From 68bfb1d220dbbe7b579a42e5b0834071515695e4 Mon Sep 17 00:00:00 2001 From: Patrick Britton Date: Mon, 16 Feb 2026 23:00:11 -0600 Subject: [PATCH] fix: remove duplicate ALTCHA routes causing conflicts - Remove duplicate ALTCHA routes outside v1 group - Keep only the routes inside the v1 group where they belong - This should resolve the route registration issue --- go-backend/cmd/api/main.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/go-backend/cmd/api/main.go b/go-backend/cmd/api/main.go index 5b9bb10..7a47091 100644 --- a/go-backend/cmd/api/main.go +++ b/go-backend/cmd/api/main.go @@ -518,9 +518,6 @@ func main() { } } - // Admin ALTCHA challenge endpoint (no auth required) - r.GET("/api/v1/admin/altcha-challenge", adminHandler.GetAltchaChallenge) - // Admin login (no auth middleware - this IS the auth step) r.POST("/api/v1/admin/login", adminHandler.AdminLogin)