fix routes to be /api/

This commit is contained in:
Blake Ridgway
2025-11-29 13:31:57 -06:00
parent 474029075d
commit eb9ac1b67a

View File

@@ -98,18 +98,18 @@ func setupRoutes(r *chi.Mux) {
// Public routes
r.Get("/health", healthCheck)
// Auth routes
// Auth routes (public - no /api prefix needed for these)
authHandler := auth.NewHandler()
r.Post("/signup", authHandler.Signup)
r.Post("/login", authHandler.Login)
r.Post("/logout", authHandler.Logout)
r.Post("/password-reset/request", authHandler.RequestPasswordReset)
r.Post("/password-reset/confirm", authHandler.ConfirmPasswordReset)
r.Post("/refresh-token", authHandler.RefreshToken)
r.Post("/api/signup", authHandler.Signup)
r.Post("/api/login", authHandler.Login)
r.Post("/api/logout", authHandler.Logout)
r.Post("/api/password-reset/request", authHandler.RequestPasswordReset)
r.Post("/api/password-reset/confirm", authHandler.ConfirmPasswordReset)
r.Post("/api/refresh-token", authHandler.RefreshToken)
// Protected routes
authMiddleware := middleware.NewAuthMiddleware()
r.Route("/protected", func(r chi.Router) {
r.Route("/api/protected", func(r chi.Router) {
r.Use(authMiddleware.ProtectedRoute)
// User routes