villebro commented on code in PR #22782: URL: https://github.com/apache/superset/pull/22782#discussion_r1081185050
########## superset/views/datasource/views.py: ########## @@ -228,7 +228,10 @@ class DatasetEditor(BaseSupersetView): @has_access @permission_name("read") def root(self) -> FlaskResponse: - return super().render_app_template() + dev = request.args.get("testing") + if dev is not None: + return super().render_app_template() + return redirect("/") Review Comment: This is from the revert, not my change -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org