From d0f68cf1c6692283768b3926e4968bb57f176cc0 Mon Sep 17 00:00:00 2001 From: Nic D Date: Thu, 5 Feb 2026 13:24:27 -0500 Subject: [PATCH] fix(auth): change logout behavior, now sends success code when logout request processed --- .../authentication/controllers/auth.controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/identity-and-account/authentication/controllers/auth.controller.ts b/src/identity-and-account/authentication/controllers/auth.controller.ts index 31e5f81..7abcba6 100644 --- a/src/identity-and-account/authentication/controllers/auth.controller.ts +++ b/src/identity-and-account/authentication/controllers/auth.controller.ts @@ -43,6 +43,8 @@ export class AuthController { response.clearCookie('connect.sid', { path: '/', }); + + response.sendStatus(200); }) } }