From bb43622684f90be11f8a9e3f6b0187e31a71bc94 Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 3 Oct 2025 13:31:54 +0200 Subject: [PATCH] test --- src/auth/src/routes/logout.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/auth/src/routes/logout.ts b/src/auth/src/routes/logout.ts index 912e602..f2fce67 100644 --- a/src/auth/src/routes/logout.ts +++ b/src/auth/src/routes/logout.ts @@ -3,6 +3,7 @@ import { FastifyPluginAsync } from 'fastify'; const route: FastifyPluginAsync = async (fastify, _opts): Promise => { void _opts; fastify.post( + '/api/auth/logout', async function(_req, res) { void _req; return res.clearCookie('token').send('{}');