diff --git a/twake/backend/node/src/services/channels/web/routes.ts b/twake/backend/node/src/services/channels/web/routes.ts index 3e40beb75..0957a2458 100644 --- a/twake/backend/node/src/services/channels/web/routes.ts +++ b/twake/backend/node/src/services/channels/web/routes.ts @@ -69,6 +69,12 @@ 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`,