geonode-project icon indicating copy to clipboard operation
geonode-project copied to clipboard

Adding ACCOUNT_LOGIN_REDIRECT_URL option to seetings.py is not working

Open eruiz67 opened this issue 3 years ago • 0 comments

In geonode when an user logs in, it is automatically redirected to the Profile page. I am trying to change that and redirect to the Home (index page). In order to to that I added the following line to the settings.py" in my geonode-project folder. But the user is still redirected to the Profile page when he/she performs the authentication

ACCOUNT_LOGIN_REDIRECT_URL = "/"

I also tried with the following line:

LOGIN_REDIRECT_URL = "/"

Am I doing something wrong? According to the geonode documentation (https://docs.geonode.org/en/master/basic/settings/index.html) the ACCOUNT_LOGIN_REDIRECT_URL "allows specifying the default redirect URL after a successful login.", so why is not working

eruiz67 avatar Mar 12 '23 21:03 eruiz67