Skip to content

Commit

Permalink
Fix base path on login redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
RealOrangeOne committed Apr 11, 2024
1 parent 9445bc4 commit 5444a47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpdesk/helpdesk/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
# Authentication URLs
LOGIN_URL = f"/{BASE_PATH}auth/login/"
LOGOUT_REDIRECT_URL = LOGIN_URL
LOGIN_REDIRECT_URL = BASE_PATH
LOGIN_REDIRECT_URL = f"/{BASE_PATH}"

# Default primary key field type
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
Expand Down

0 comments on commit 5444a47

Please sign in to comment.