fix(router): small lil typo
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful

added a missing '/' maybe it's important, maybe it's not
This commit is contained in:
nikurasu 2024-05-27 19:07:42 +02:00
parent 2e5993abe7
commit 246f0046ae
Signed by: Nikurasu
GPG key ID: 9E7F14C03EF1F271

View file

@ -15,7 +15,7 @@ func PublicRoutes(app *fiber.App) {
webhooks.Post("/pretix/role_question", controller.PostPretixRoleQuestion) webhooks.Post("/pretix/role_question", controller.PostPretixRoleQuestion)
webhooks.Post("/pretix/role_product", controller.PostPretixRoleProduct) webhooks.Post("/pretix/role_product", controller.PostPretixRoleProduct)
webhooks.Post("/pretix/subproduct", controller.PostPretixRegularsTable) webhooks.Post("/pretix/subproduct", controller.PostPretixRegularsTable)
webhooks.Post("pretix/speicalEventRoles", controller.PostPretixSpecialEventWithRoles) webhooks.Post("/pretix/speicalEventRoles", controller.PostPretixSpecialEventWithRoles)
apiv1.Post("/login", controller.LoginUser) apiv1.Post("/login", controller.LoginUser)
apiv1.Get("/event", controller.ReturnAllEventsPublic) apiv1.Get("/event", controller.ReturnAllEventsPublic)
apiv1.Get("/ping", controller.Ping) apiv1.Get("/ping", controller.Ping)