0
Fork 0
mirror of https://github.com/stonith404/pingvin-share.git synced 2025-01-22 01:22:32 -05:00

refactor: run formatter

This commit is contained in:
Elias Schneider 2024-12-17 22:29:24 +01:00
parent 168038eae7
commit 2db1f6a112
No known key found for this signature in database
GPG key ID: 07E623B294202B6C

View file

@ -70,7 +70,10 @@ export abstract class GenericOidcProvider implements OAuthProvider<OidcToken> {
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,