From 9e171a223e58257e7088c2b694e6b8391bf83136 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Aguirre?= Date: Fri, 20 Jan 2012 19:52:39 -0200 Subject: [PATCH] Doc about django auth backend. Refs #154 --- README.rst | 3 +++ doc/configuration.rst | 3 +++ 2 files changed, 6 insertions(+) diff --git a/README.rst b/README.rst index a16b4b8..81f8bda 100644 --- a/README.rst +++ b/README.rst @@ -125,6 +125,9 @@ Configuration Take into account that backends **must** be defined in AUTHENTICATION_BACKENDS_ or Django won't pick them when trying to authenticate the user. + Don't miss ``django.contrib.auth.backends.ModelBackend`` if using ``django.auth`` + user model or users won't be able to login. + - Define desired backends for your site:: SOCIAL_AUTH_ENABLED_BACKENDS = ('google', 'google-oauth', 'facebook', ...) diff --git a/doc/configuration.rst b/doc/configuration.rst index 4c05f54..f62a3a8 100644 --- a/doc/configuration.rst +++ b/doc/configuration.rst @@ -29,6 +29,9 @@ Configuration Take into account that backends **must** be defined in AUTHENTICATION_BACKENDS_ or Django won't pick them when trying to authenticate the user. + Don't miss ``django.contrib.auth.backends.ModelBackend`` if using ``django.auth`` + user model or users won't be able to login. + - Define desired backends for your site:: SOCIAL_AUTH_ENABLED_BACKENDS = ('google', 'google-oauth', 'facebook', ...) -- 2.39.5