Skip to content

Commit f2e6339

Browse files
Correct admin url prepend conf (#796)
The configuration for prepending a string to the admin url was unintentionally removed by a typo, this adds it back in.
1 parent dcb9060 commit f2e6339

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hhs_oauth_server/settings/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,8 @@
438438

439439
LOGOUT_REDIRECT_URL = '/'
440440

441-
# Move Admin to a variable url location ADMIN_PREPEND_URL = env('DJANGO_ADMIN_PREPEND_URL', '')
441+
# Move Admin to a variable url location
442+
ADMIN_PREPEND_URL = env('DJANGO_ADMIN_PREPEND_URL', '')
442443

443444
ALLOW_END_USER_EXTERNAL_AUTH = "B"
444445
EXTERNAL_AUTH_NAME = 'MyMedicare.gov'

0 commit comments

Comments
 (0)