feat: register finish verify route

This commit is contained in:
2025-06-07 02:08:52 +02:00
parent 66e1756ade
commit 715a984241

View File

@ -72,6 +72,7 @@ func (h *AuthHandler) RegisterRoutes(api chi.Router) {
protected.Get("/profile", h.getProfile)
protected.Post("/email", h.requestEmailOtp)
protected.Post("/email/otp", h.confirmOtp)
protected.Post("/verify", h.finishVerification)
})
r.Post("/login", h.login)