Merge pull request #4476 from rmanny/remove-default-scope-oidc
Don't pass default as a scope to OIDC providers
This commit is contained in:
@@ -65,7 +65,7 @@ export class OidcAuthProvider implements OAuthHandlers {
|
||||
return await executeRedirectStrategy(req, strategy, {
|
||||
accessType: 'offline',
|
||||
prompt: 'none',
|
||||
scope: `${req.scope} default`,
|
||||
scope: req.scope,
|
||||
state: encodeState(req.state),
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user