[Django]-Django social-registration redirect url sometimes /social/setup and sometimes /accounts/profile . Why?

8👍

Django redirects to /accounts/profile when it doesn’t know were to redirect to. You can change this behaviour by setting LOGIN_REDIRECT_URL in settings.py:

LOGIN_REDIRECT_URL = '/'

Leave a comment