Skip to content

Commit

Permalink
update protected auth fields
Browse files Browse the repository at this point in the history
  • Loading branch information
erikmartus committed Feb 2, 2024
1 parent 649815b commit 37a327a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/djangoapps/third_party_auth/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def apply_settings(django_settings):
django_settings.SOCIAL_AUTH_STRATEGY = 'common.djangoapps.third_party_auth.strategy.ConfigurationModelStrategy'

# We let the user specify their email address during signup.
django_settings.SOCIAL_AUTH_PROTECTED_USER_FIELDS = ['email']
django_settings.SOCIAL_AUTH_PROTECTED_USER_FIELDS = ['email', 'first_name', 'last_name'] # @medality_custom

# Disable exceptions by default for prod so you get redirect behavior
# instead of a Django error page. During development you may want to
Expand Down

0 comments on commit 37a327a

Please sign in to comment.