Skip to content

Commit

Permalink
oidc: Remove groups attribute
Browse files Browse the repository at this point in the history
It leads to crash with Django.

This reverts a tiny portion of #669.

Fixes #690
  • Loading branch information
nijel committed Jun 28, 2022
1 parent 20abe2a commit 3d818d6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion social_core/backends/open_id_connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,5 +248,4 @@ def get_user_details(self, response):
'fullname': response.get('name'),
'first_name': response.get('given_name'),
'last_name': response.get('family_name'),
'groups': response.get('groups'), # not standardized but widely implemented
}

0 comments on commit 3d818d6

Please sign in to comment.