Changed the oidc prompt parameter value to "none"

This commit is contained in:
Brian Leathem
2020-11-18 12:55:11 -08:00
parent b5bb693522
commit 14faf3ad37
@@ -63,7 +63,7 @@ export class OidcAuthProvider implements OAuthHandlers {
const strategy = await this._strategy;
return await executeRedirectStrategy(req, strategy, {
accessType: 'offline',
prompt: 'consent',
prompt: 'none',
scope: `${req.scope} default`,
state: encodeState(req.state),
});