From 720d043dee8697a1484ca8e708ad10d8b0614ec7 Mon Sep 17 00:00:00 2001 From: juancwu Date: Mon, 9 Feb 2026 21:24:02 +0000 Subject: [PATCH] fix: onboard endpoints rate limitted --- internal/routes/routes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/routes/routes.go b/internal/routes/routes.go index ae4cd3b..b63ba9e 100644 --- a/internal/routes/routes.go +++ b/internal/routes/routes.go @@ -52,7 +52,7 @@ func SetupRoutes(a *app.App) http.Handler { // ==================================================================================== mux.HandleFunc("GET /auth/onboarding", middleware.RequireAuth(auth.OnboardingPage)) - mux.HandleFunc("POST /auth/onboarding", authRateLimiter(middleware.RequireAuth(auth.CompleteOnboarding))) + mux.HandleFunc("POST /auth/onboarding", middleware.RequireAuth(auth.CompleteOnboarding)) mux.HandleFunc("GET /app/dashboard", middleware.RequireAuth(dashboard.DashboardPage)) mux.HandleFunc("POST /app/spaces", middleware.RequireAuth(dashboard.CreateSpace))