Move AnonymousAuth from system to utils.

This commit is contained in:
René Köcher 2012-04-14 09:49:37 +02:00
parent e8337278a1
commit d2f9f630c7
3 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ SITE_ROOT = os.path.realpath(os.path.dirname(__file__))
AUTH_PROFILE_MODULE = 'participant.Profile'
AUTHENTICATION_BACKENDS = ('django.contrib.auth.backends.ModelBackend', 'openslides.system.auth.AnonymousAuth',)
AUTHENTICATION_BACKENDS = ('django.contrib.auth.backends.ModelBackend', 'openslides.utils.auth.AnonymousAuth',)
LOGIN_URL = '/login/'
LOGIN_REDIRECT_URL = '/'
@ -112,5 +112,5 @@ TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.request',
'django.core.context_processors.i18n',
'utils.utils.revision',
'openslides.system.auth.anonymous_context_additions',
'openslides.utils.auth.anonymous_context_additions',
)