From f843f6a2bf1984bfa27e5435fd42a251f355b1aa Mon Sep 17 00:00:00 2001 From: Dusan Malusev Date: Sun, 13 Mar 2022 12:26:45 +0100 Subject: [PATCH] ADding user to stats Signed-off-by: Dusan Malusev --- backend/pkg/http/routes.go | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/pkg/http/routes.go b/backend/pkg/http/routes.go index 3b5bb02..9d133a9 100644 --- a/backend/pkg/http/routes.go +++ b/backend/pkg/http/routes.go @@ -21,7 +21,6 @@ func registerRoutes(c *container.Container, app *fiber.App) { app.Post("/event/:eventId/participate", authMiddleware, events.InsertParticipent(c.GetParticipantService())) app.Get("/ws/:eventId/collection", - authMiddleware, middleware.WebSocket(), ws.LedgerHandler(c.GetBroadCaster(), c.GetDefaultLogger()), )