From d5bdacde05cf17b3ba01683ed55972cbe916a9ff Mon Sep 17 00:00:00 2001 From: Luke Hatcher Date: Fri, 13 Jul 2012 14:37:29 -0400 Subject: [PATCH] use email auth backend --- symposion_project/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/symposion_project/settings.py b/symposion_project/settings.py index 087f8c77..96f22d33 100644 --- a/symposion_project/settings.py +++ b/symposion_project/settings.py @@ -194,9 +194,9 @@ ACCOUNT_LOGIN_REDIRECT_URL = "dashboard" ACCOUNT_LOGOUT_REDIRECT_URL = "home" ACCOUNT_USER_DISPLAY = lambda user: user.email -# AUTHENTICATION_BACKENDS = [ -# "pinax.apps.account.auth_backends.AuthenticationBackend", -# ] +AUTHENTICATION_BACKENDS = [ + "account.auth_backends.EmailAuthenticationBackend", +] LOGIN_URL = "/account/login/" # @@@ any way this can be a url name?