From 59e74ec5a67ad37325af891a52a0ec1b19fe3c75 Mon Sep 17 00:00:00 2001 From: Khaled FERJANI Date: Mon, 27 May 2024 09:25:47 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20feat:=20proxy=20logout=20request?= =?UTF-8?q?s=20to=20lemon?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- registration/src/lib/utils/proxy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registration/src/lib/utils/proxy.ts b/registration/src/lib/utils/proxy.ts index b637baf..dbdc6d0 100644 --- a/registration/src/lib/utils/proxy.ts +++ b/registration/src/lib/utils/proxy.ts @@ -3,7 +3,7 @@ import { env } from '$env/dynamic/private'; import logger from '$services/logger'; import authService from '$services/auth'; -export const PROXY_PATHS = ['/oauth2', '/.well-known']; +export const PROXY_PATHS = ['/oauth2', '/.well-known', '/logout']; export const PROXY_AUTH_PATH = '/oauth2/authorize'; export const PROXY_LOGOUT_PATH = '/oauth2/logout';