diff --git a/python/routes/transcripts.py b/python/routes/transcripts.py index 7d0ed15c..2adccd34 100644 --- a/python/routes/transcripts.py +++ b/python/routes/transcripts.py @@ -1,4 +1,4 @@ -# 231:78 3:6 2:4 +# 231:79 3:6 2:4 # DOC module: transcripts # DOC label: Transcripts # DOC description: Transcript upload and EDCMBONE scoring — ingest files, list uploads/reports, and drill into per-round messages. @@ -35,7 +35,8 @@ router = APIRouter(prefix="/api/v1/transcripts", tags=["transcripts"]) -UI_META = {"label": "Transcripts", "module": "transcripts", "order": 25, "path": "/transcripts"} +# Standalone top-nav page metadata (not a console tab; not consumed by collect_ui_meta). +PAGE_META = {"label": "Transcripts", "module": "transcripts", "order": 25, "path": "/transcripts"} def _caller_uid(request: Request) -> Optional[str]: @@ -364,4 +365,4 @@ async def explain_report_endpoint(request: Request, report_id: int): status_code=502, detail=f"explainer failed: {type(exc).__name__}: {exc}", ) -# 231:78 3:6 2:4 +# 231:79 3:6 2:4