From dadc90bca257f2d785713a37949c3a1bf6a5243d Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 30 Apr 2020 08:47:25 +0200 Subject: Client calls revoke-token endpoint on logout --- server/controllers/plugins.ts | 2 +- server/lib/auth.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'server') diff --git a/server/controllers/plugins.ts b/server/controllers/plugins.ts index f12e1c0f5..f88a1632d 100644 --- a/server/controllers/plugins.ts +++ b/server/controllers/plugins.ts @@ -149,6 +149,6 @@ function handleAuthInPlugin (req: express.Request, res: express.Response) { logger.debug('Forwarding auth plugin request in %s of plugin %s.', authOptions.authName, res.locals.registeredPlugin.npmName) authOptions.onAuthRequest(req, res) } catch (err) { - logger.error('Forward request error in auth %s of plugin %s.', authOptions.authName, res.locals.registeredPlugin.npmName) + logger.error('Forward request error in auth %s of plugin %s.', authOptions.authName, res.locals.registeredPlugin.npmName, { err }) } } diff --git a/server/lib/auth.ts b/server/lib/auth.ts index 2ef77bc9c..1fa896f6e 100644 --- a/server/lib/auth.ts +++ b/server/lib/auth.ts @@ -68,7 +68,7 @@ async function handleTokenRevocation (req: express.Request, res: express.Respons // } // }) - return res.sendStatus(200) + return res.json() } async function onExternalUserAuthenticated (options: { -- cgit v1.2.3