Skip to content

Commit

Permalink
fix(slack): Default scope
Browse files Browse the repository at this point in the history
  • Loading branch information
pennersr committed May 13, 2024
1 parent 2511802 commit a52fb87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion allauth/socialaccount/providers/slack/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def extract_common_fields(self, data):
return {"name": user.get("name"), "email": user.get("email", None)}

def get_default_scope(self):
return ["identify"]
return ["openid", "profile", "email"]


provider_classes = [SlackProvider]

0 comments on commit a52fb87

Please sign in to comment.