From ec92e85c8d294b30117ad2599ad03b0bbb04574c Mon Sep 17 00:00:00 2001 From: Elias Schneider Date: Fri, 14 Feb 2025 14:30:21 +0100 Subject: [PATCH] fix: redirection to the OIDC end session endpoint --- backend/src/auth/auth.service.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/backend/src/auth/auth.service.ts b/backend/src/auth/auth.service.ts index b2722c7..38aafee 100644 --- a/backend/src/auth/auth.service.ts +++ b/backend/src/auth/auth.service.ts @@ -269,10 +269,7 @@ export class AuthService { signOutFromProviderSupportedAndActivated ) { const configuration = await provider.getConfiguration(); - if ( - configuration.frontchannel_logout_supported && - URL.canParse(configuration.end_session_endpoint) - ) { + if (URL.canParse(configuration.end_session_endpoint)) { const redirectURI = new URL(configuration.end_session_endpoint); redirectURI.searchParams.append( "post_logout_redirect_uri",