Skip to content

Commit

Permalink
Fix Response Type for OIDC
Browse files Browse the repository at this point in the history
  • Loading branch information
torbenraab committed Sep 11, 2024
1 parent 827db8d commit 6bd2316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apiserver/plane/authentication/provider/oauth/oidc.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(self, request, code=None, state=None, callback=None):
"redirect_uri": redirect_uri,
"scope": self.scope,
"state": state,
"response_type": "code id_token"
"response_type": "code"
}
auth_url = (
f"{OIDC_URL_AUTHORIZATION}?{urlencode(url_params)}"
Expand Down

0 comments on commit 6bd2316

Please sign in to comment.