User able to re-send the confirm register email

This commit is contained in:
2025-03-15 22:20:33 +08:00
parent bcb2cd2f9c
commit 45dd50ccba
5 changed files with 39 additions and 8 deletions

View File

@ -71,9 +71,10 @@ func MapControllers(app *fiber.App, baseURL string) {
me.Put("/language", updateAccountLanguage)
me.Get("/events", getEvents)
me.Get("/tickets", getTickets)
me.Delete("/tickets/:ticketId", killTicket)
me.Delete("/tickets/:ticketId", deleteTicket)
me.Post("/confirm", doRegisterConfirm)
me.Patch("/confirm", reNotifyRegisterConfirm)
me.Get("/status", getMyselfStatus)
me.Post("/status", setStatus)