From 246f0046aef29695615ebeedbf3575f528c7c2d4 Mon Sep 17 00:00:00 2001 From: nikurasu Date: Mon, 27 May 2024 19:07:42 +0200 Subject: [PATCH] fix(router): small lil typo added a missing '/' maybe it's important, maybe it's not --- src/app/routes/public_routes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/routes/public_routes.go b/src/app/routes/public_routes.go index d0b3016..b9c9018 100644 --- a/src/app/routes/public_routes.go +++ b/src/app/routes/public_routes.go @@ -15,7 +15,7 @@ func PublicRoutes(app *fiber.App) { webhooks.Post("/pretix/role_question", controller.PostPretixRoleQuestion) webhooks.Post("/pretix/role_product", controller.PostPretixRoleProduct) webhooks.Post("/pretix/subproduct", controller.PostPretixRegularsTable) - webhooks.Post("pretix/speicalEventRoles", controller.PostPretixSpecialEventWithRoles) + webhooks.Post("/pretix/speicalEventRoles", controller.PostPretixSpecialEventWithRoles) apiv1.Post("/login", controller.LoginUser) apiv1.Get("/event", controller.ReturnAllEventsPublic) apiv1.Get("/ping", controller.Ping)