Move the Authentication backend to the users package

This commit is contained in:
Krzysztof Klimonda
2013-03-03 09:09:13 -08:00
parent d0d68545ca
commit 5b777b7e14
3 changed files with 1 additions and 1 deletions

View File

@@ -57,7 +57,7 @@ TEMPLATE_CONTEXT_PROCESSORS = (
'pinry.core.context_processors.template_settings',
)
AUTHENTICATION_BACKENDS = (
'pinry.core.auth.backends.CombinedAuthBackend',
'pinry.users.auth.backends.CombinedAuthBackend',
'django.contrib.auth.backends.ModelBackend',
)