From: Matías Aguirre Date: Fri, 20 Jan 2012 21:52:39 +0000 (-0200) Subject: Doc about django auth backend. Refs #154 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=9e171a223e58257e7088c2b694e6b8391bf83136;p=django-social-auth.git Doc about django auth backend. Refs #154 --- 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', ...)