From e71e8e8994b836c16311c9a7f8d05f7ae4fcda06 Mon Sep 17 00:00:00 2001 From: Khaled Ferjani Date: Tue, 5 Mar 2024 15:22:19 +0100 Subject: [PATCH] =?UTF-8?q?Revert=20"=F0=9F=90=9B=20Debug:=20added=20debug?= =?UTF-8?q?=20endpoint=20for=20channels=20list"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- twake/backend/node/src/services/channels/web/routes.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/twake/backend/node/src/services/channels/web/routes.ts b/twake/backend/node/src/services/channels/web/routes.ts index 0957a24585..3e40beb75c 100644 --- a/twake/backend/node/src/services/channels/web/routes.ts +++ b/twake/backend/node/src/services/channels/web/routes.ts @@ -69,12 +69,6 @@ const routes: FastifyPluginCallback = (fastify: FastifyInstance, options, next) handler: channelsController.list.bind(channelsController), }); - fastify.route({ - method: "GET", - url: `${channelsUrl}debug`, - handler: channelsController.list.bind(channelsController), - }); - fastify.route({ method: "GET", url: `${channelsUrl}/:id`,