fix: remove auth from veli games

This commit is contained in:
Samuel Tariku 2025-09-09 19:21:43 +03:00
parent e3a24d6bb1
commit 5c482b4d62

View File

@ -357,8 +357,8 @@ func (a *App) initAppRoutes() {
groupV1.Post("/webhooks/alea-play", a.authMiddleware, h.HandleAleaCallback) groupV1.Post("/webhooks/alea-play", a.authMiddleware, h.HandleAleaCallback)
//Veli Virtual Game Routes //Veli Virtual Game Routes
groupV1.Post("/veli/providers", a.authMiddleware, h.GetProviders) groupV1.Post("/veli/providers", h.GetProviders)
groupV1.Post("/veli/games-list", a.authMiddleware, h.GetGamesByProvider) groupV1.Post("/veli/games-list", h.GetGamesByProvider)
groupV1.Post("/veli/start-game", a.authMiddleware, h.StartGame) groupV1.Post("/veli/start-game", a.authMiddleware, h.StartGame)
groupV1.Post("/veli/start-demo-game", h.StartDemoGame) groupV1.Post("/veli/start-demo-game", h.StartDemoGame)
a.fiber.Post("/balance", h.GetBalance) a.fiber.Post("/balance", h.GetBalance)