Skip to content

Commit fafb588

Browse files
authored
Update oauth.py, fix scopes..fully
1 parent a9a47a0 commit fafb588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/endpoints/oauth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ async def init_oidc(form_data):
114114
args = {
115115
"client_id": config.oidc.client_id,
116116
"response_type": "code",
117-
"scope": ["openid"],
117+
"scope": ["openid", "profile", "email"],
118118
"state": session["state"],
119119
"nonce": session["nonce"],
120120
"redirect_uri": config.oidc.redirect_uri,

0 commit comments

Comments
 (0)