diff --git a/backend/src/oauth/provider/genericOidc.provider.ts b/backend/src/oauth/provider/genericOidc.provider.ts index 951afbed..e6a45aea 100644 --- a/backend/src/oauth/provider/genericOidc.provider.ts +++ b/backend/src/oauth/provider/genericOidc.provider.ts @@ -70,7 +70,10 @@ export abstract class GenericOidcProvider implements OAuthProvider { new URLSearchParams({ client_id: this.config.get(`oauth.${this.name}-clientId`), response_type: "code", - scope: this.name == "oidc" ? this.config.get(`oauth.oidc-scope`) : "openid email profile", + scope: + this.name == "oidc" + ? this.config.get(`oauth.oidc-scope`) + : "openid email profile", redirect_uri: this.getRedirectUri(), state, nonce,