From c1b083322959ccdfa7fb6c5680209279692fb1a7 Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 3 Oct 2025 13:31:35 +0200 Subject: [PATCH] test --- src/auth/src/routes/logout.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/auth/src/routes/logout.ts b/src/auth/src/routes/logout.ts index f2fce67..912e602 100644 --- a/src/auth/src/routes/logout.ts +++ b/src/auth/src/routes/logout.ts @@ -3,7 +3,6 @@ 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('{}');