Fix: Change empty path to '/' in recording_routes (FastAPI requirement)
Some checks failed
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-school (push) Successful in 30s
CI / test-go-edu-search (push) Successful in 30s
CI / test-python-klausur (push) Failing after 2m29s
CI / test-python-agent-core (push) Successful in 22s
CI / test-nodejs-website (push) Successful in 23s
Some checks failed
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-school (push) Successful in 30s
CI / test-go-edu-search (push) Successful in 30s
CI / test-python-klausur (push) Failing after 2m29s
CI / test-python-agent-core (push) Successful in 22s
CI / test-nodejs-website (push) Successful in 23s
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -140,7 +140,7 @@ async def get_audit_log(
|
|||||||
# RECORDING MANAGEMENT ENDPOINTS
|
# RECORDING MANAGEMENT ENDPOINTS
|
||||||
# ==========================================
|
# ==========================================
|
||||||
|
|
||||||
@router.get("", response_model=RecordingListResponse)
|
@router.get("/", response_model=RecordingListResponse)
|
||||||
async def list_recordings(
|
async def list_recordings(
|
||||||
status: Optional[str] = Query(None, description="Filter by status"),
|
status: Optional[str] = Query(None, description="Filter by status"),
|
||||||
meeting_id: Optional[str] = Query(None, description="Filter by meeting ID"),
|
meeting_id: Optional[str] = Query(None, description="Filter by meeting ID"),
|
||||||
|
|||||||
Reference in New Issue
Block a user