(session_id: str)
| 37 | |
| 38 | @router.get("/api/uploads/{session_id}") |
| 39 | async def list_attachments(session_id: str): |
| 40 | try: |
| 41 | manager = ensure_known_session(session_id, require_connection=False) |
| 42 | except ValidationError as exc: |
| 43 | raise HTTPException(status_code=400, detail=str(exc)) |
| 44 | manifest = manager.attachment_service.list_attachment_manifests(session_id) |
| 45 | return {"attachments": manifest} |
nothing calls this directly
no test coverage detected