paulsonkevgit commented on issue #34422: URL: https://github.com/apache/superset/issues/34422#issuecomment-3158745406
from flask_appbuilder import expose, IndexView from superset.typing import FlaskResponse class MyCustomIndexView(IndexView): @expose('/') def index(self) -> FlaskResponse: return redirect("/chart/list/") pass def mutate_app(app): from superset.extensions import appbuilder appbuilder.indexview = MyCustomIndexView FLASK_APP_MUTATOR = mutate_app I tried the above , but the redirection is not working i am landing to the superset/welcome page itself -- 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