diff --git a/internal/web_server/routes.go b/internal/web_server/routes.go index 9e68e79..21803b5 100644 --- a/internal/web_server/routes.go +++ b/internal/web_server/routes.go @@ -357,8 +357,8 @@ func (a *App) initAppRoutes() { groupV1.Post("/webhooks/alea-play", a.authMiddleware, h.HandleAleaCallback) //Veli Virtual Game Routes - groupV1.Post("/veli/providers", a.authMiddleware, h.GetProviders) - groupV1.Post("/veli/games-list", a.authMiddleware, h.GetGamesByProvider) + groupV1.Post("/veli/providers", h.GetProviders) + groupV1.Post("/veli/games-list", h.GetGamesByProvider) groupV1.Post("/veli/start-game", a.authMiddleware, h.StartGame) groupV1.Post("/veli/start-demo-game", h.StartDemoGame) a.fiber.Post("/balance", h.GetBalance)