From 0cb87b0279d7fad6d6b74f5f7934dcf35de2c30b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Mon, 1 Jul 2024 22:10:55 +0200 Subject: [PATCH] remove unused route --- apps/api/src/routes/event.router.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/apps/api/src/routes/event.router.ts b/apps/api/src/routes/event.router.ts index b48f2cb2..c48e1e50 100644 --- a/apps/api/src/routes/event.router.ts +++ b/apps/api/src/routes/event.router.ts @@ -55,11 +55,6 @@ const eventRouter: FastifyPluginCallback = (fastify, opts, done) => { url: '/', handler: controller.postEvent, }); - fastify.route({ - method: 'GET', - url: '/', - handler: controller.postEvent, - }); done(); };