From 2db1f6a112e5139874bada7cf307665d1425eeed Mon Sep 17 00:00:00 2001 From: Elias Schneider Date: Tue, 17 Dec 2024 22:29:24 +0100 Subject: [PATCH] refactor: run formatter --- backend/src/oauth/provider/genericOidc.provider.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backend/src/oauth/provider/genericOidc.provider.ts b/backend/src/oauth/provider/genericOidc.provider.ts index 951afbe..e6a45ae 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,