From: Hannes Struss Date: Fri, 8 Jun 2012 07:39:41 +0000 (+0200) Subject: added SOCIAL_AUTH_PROTECTED_USER_FIELDS doc to correct file X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=51c8b8a2340b85a5aa883041c3c8030c1b475da8;p=django-social-auth.git added SOCIAL_AUTH_PROTECTED_USER_FIELDS doc to correct file --- diff --git a/doc/configuration.rst b/doc/configuration.rst index 060944e..c970064 100644 --- a/doc/configuration.rst +++ b/doc/configuration.rst @@ -155,6 +155,12 @@ Configuration SOCIAL_AUTH_EXTRA_DATA = False +- The update_user_details pipeline processor will set certain fields on user + objects, such as ``email``. Set this to a list of fields you only want to + set for newly created users: + + SOCIAL_AUTH_PROTECTED_USER_FIELDS = ['email',] + Also more extra values will be stored if defined, details about this setting are listed below on OpenId and OAuth sections.