From ec667a75b607996d7ceba52834eb21f8a05e63a2 Mon Sep 17 00:00:00 2001 From: Lars Date: Sat, 18 Apr 2026 08:20:56 +0200 Subject: [PATCH] fix: remove test endpoint with syntax error --- backend/routers/prompts.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/backend/routers/prompts.py b/backend/routers/prompts.py index 50b823a..8a9992a 100644 --- a/backend/routers/prompts.py +++ b/backend/routers/prompts.py @@ -32,11 +32,6 @@ OPENROUTER_MODEL = os.getenv("OPENROUTER_MODEL", "anthropic/claude-sonnet-4") router = APIRouter(prefix=”/api/prompts”, tags=[“prompts”]) -@router.post(“/test-post”) -def test_post(session: dict = Depends(require_auth)): - “””Simple POST test endpoint””” - return {“status”: “ok”, “method”: “POST”} - # Metadaten-Schlüssel in workflow aggregate_results (nicht als „einziger” Nutzer-Output) _WORKFLOW_AGG_META_KEYS = frozenset({ "combined_analysis",