Remove unused setting LOGOUT_URL

Django 1.10 officially does not use the setting LOGOUT_URL anymore.
Django stronghold incorrectly uses it as a URL rather than named url.
This commit is contained in:
Sunil Mohan Adapa 2016-08-11 09:22:23 +05:30 committed by James Valleroy
parent 09ba42aa7c
commit 2f1fe8af22
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -217,7 +217,6 @@ def configure_django():
LOGGING=logging_configuration,
LOGIN_URL='users:login',
LOGIN_REDIRECT_URL='apps:index',
LOGOUT_URL='users:logout',
MESSAGE_TAGS={message_constants.ERROR: 'danger'},
MIDDLEWARE_CLASSES=(
'django.contrib.sessions.middleware.SessionMiddleware',