From 0fc3f80ff03d99b8a9e91d8154f9c16c6b26b7a6 Mon Sep 17 00:00:00 2001 From: jyio Date: Sun, 17 Dec 2023 15:10:10 -0500 Subject: [PATCH] Rename endSessionEndpoint flag to skipEndSessionEndpoint (#793) --- app/server/lib/OIDCConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/server/lib/OIDCConfig.ts b/app/server/lib/OIDCConfig.ts index 58d01443..110183e8 100644 --- a/app/server/lib/OIDCConfig.ts +++ b/app/server/lib/OIDCConfig.ts @@ -94,7 +94,7 @@ export class OIDCConfig { defaultValue: 'email', }); - this._skipEndSessionEndpoint = section.flag('endSessionEndpoint').readBool({ + this._skipEndSessionEndpoint = section.flag('skipEndSessionEndpoint').readBool({ envVar: 'GRIST_OIDC_IDP_SKIP_END_SESSION_ENDPOINT', defaultValue: false, })!;