diff --git a/app/server/lib/OIDCConfig.ts b/app/server/lib/OIDCConfig.ts index 31180ca6..b14a2693 100644 --- a/app/server/lib/OIDCConfig.ts +++ b/app/server/lib/OIDCConfig.ts @@ -279,7 +279,7 @@ export class OIDCConfig { }); } - public async getLogoutRedirectUrl(req: express.Request, redirectUrl: URL): Promise { + public async getLogoutRedirectUrl(req: express.Request): Promise { const session: SessionObj|undefined = (req as RequestWithLogin).session; const stableRedirectUri = new URL('/signed-out', getOriginUrl(req)).href; // For IdPs that don't have end_session_endpoint, we just redirect to the logout page. diff --git a/test/server/lib/OIDCConfig.ts b/test/server/lib/OIDCConfig.ts index 099c0950..d7f46814 100644 --- a/test/server/lib/OIDCConfig.ts +++ b/test/server/lib/OIDCConfig.ts @@ -752,7 +752,6 @@ describe('OIDCConfig', () => { }); describe('getLogoutRedirectUrl', () => { - const REDIRECT_URL = new URL('http://localhost:8484/docs/signed-out'); const STABLE_LOGOUT_URL = new URL('http://localhost:8484/signed-out'); const URL_RETURNED_BY_CLIENT = 'http://localhost:8484/logout_url_from_issuer'; const ENV_VALUE_GRIST_OIDC_IDP_END_SESSION_ENDPOINT = 'http://localhost:8484/logout'; @@ -800,11 +799,11 @@ describe('OIDCConfig', () => { const config = await OIDCConfigStubbed.buildWithStub(clientStub.asClient()); const req = { headers: { - host: REDIRECT_URL.host + host: STABLE_LOGOUT_URL.host }, session: 'session' in ctx ? ctx.session : FAKE_SESSION } as unknown as RequestWithLogin; - const url = await config.getLogoutRedirectUrl(req, REDIRECT_URL); + const url = await config.getLogoutRedirectUrl(req); assert.equal(url, ctx.expectedUrl); if (ctx.expectedLogoutParams) { assert.isTrue(clientStub.endSessionUrl.calledOnce);