diff --git a/internal/api/modules/amp/routes_test.go b/internal/api/modules/amp/routes_test.go index 51bd7abd..89e43506 100644 --- a/internal/api/modules/amp/routes_test.go +++ b/internal/api/modules/amp/routes_test.go @@ -39,6 +39,11 @@ func TestRegisterManagementRoutes(t *testing.T) { {"/api/threads", http.MethodGet}, {"/threads.rss", http.MethodGet}, // Root-level route (no /api prefix) {"/api/otel", http.MethodGet}, + {"/api/tab", http.MethodGet}, + {"/api/tab/some/path", http.MethodGet}, + {"/auth", http.MethodGet}, // Root-level auth route + {"/auth/cli-login", http.MethodGet}, // CLI login flow + {"/auth/callback", http.MethodGet}, // OAuth callback // Google v1beta1 bridge should still proxy non-model requests (GET) and allow POST {"/api/provider/google/v1beta1/models", http.MethodGet}, {"/api/provider/google/v1beta1/models", http.MethodPost},