(
local_file_service: LocalFileService = Depends(get_local_file_service),
)
| 519 | |
| 520 | @admin_api.get("/local/lists") |
| 521 | async def get_local_lists( |
| 522 | local_file_service: LocalFileService = Depends(get_local_file_service), |
| 523 | ): |
| 524 | files = await local_file_service.list_files() |
| 525 | return APIResponse(detail=files) |
| 526 | |
| 527 | |
| 528 | @admin_api.delete("/local/delete") |
nothing calls this directly
no test coverage detected