-
Notifications
You must be signed in to change notification settings - Fork 14k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redirect After Login to intent url #1303
Comments
Looks like a limitation with flask-application-builder (or the way we are using it). We need to pass explicitly the next url we want to be redirected after login |
Notice: this issue has been closed because it has been inactive for 559 days. Feel free to comment and request for this issue to be reopened. |
Any chance to get it reopened? It's quite basic scenario. Especially useful when someone passes URL, other person opens and needs to login to view it |
Implemented a workaround with Superset + Nginx using cookies. Here is a sample nginx config,
}` In superset_config.py, `from flask import abort, request, redirect, session as web_session class CustomAuthRemoteUserView(AuthRemoteUserView):
class CustomSecurityManager(SupersetSecurityManager): AUTH_TYPE = AUTH_REMOTE_USER |
Hi @Esthove, im new with superset. Can i know this issue can just changes on superset_config.py? Thanks for the help. |
Do we have a fix for this? Can anyone provide more details? |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. For admin, please label this issue |
When You try to access a dashboard and you are not logged in already.
The system will pass you to the login page. (that's ok) but later after login, the system does not redirect you to the dashboard that you tried to access at the first, the system will just redirect you to the welcome screen.
The same happens for iframes.
The text was updated successfully, but these errors were encountered: