From: Matías Aguirre Date: Mon, 23 Apr 2012 20:34:19 +0000 (-0300) Subject: Fix example pipeline doc. X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=a93f1770bd197e30211b43c253833bb1496b4e3a;p=django-social-auth.git Fix example pipeline doc. --- diff --git a/README.rst b/README.rst index c80a2d0..aa00485 100644 --- a/README.rst +++ b/README.rst @@ -425,6 +425,7 @@ accept already registered ones would look like this:: SOCIAL_AUTH_PIPELINE = ( 'social_auth.backends.pipeline.social.social_auth_user', + 'social_auth.backends.pipeline.social.associate_user', 'social_auth.backends.pipeline.social.load_extra_data', 'social_auth.backends.pipeline.user.update_user_details' ) diff --git a/doc/pipeline.rst b/doc/pipeline.rst index 776e5d5..1ae21c2 100644 --- a/doc/pipeline.rst +++ b/doc/pipeline.rst @@ -28,6 +28,7 @@ accept already registered ones would look like this:: SOCIAL_AUTH_PIPELINE = ( 'social_auth.backends.pipeline.social.social_auth_user', + 'social_auth.backends.pipeline.social.associate_user', 'social_auth.backends.pipeline.social.load_extra_data', 'social_auth.backends.pipeline.user.update_user_details' )