From 715a984241c12d16661aadaa67839c67ecf516c9 Mon Sep 17 00:00:00 2001 From: LandaMm Date: Sat, 7 Jun 2025 02:08:52 +0200 Subject: [PATCH] feat: register finish verify route --- internal/auth/routes.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/auth/routes.go b/internal/auth/routes.go index 3bb31b6..7ac89e9 100644 --- a/internal/auth/routes.go +++ b/internal/auth/routes.go @@ -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)