We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b0194b commit 13c7916Copy full SHA for 13c7916
1 file changed
src/backend/api/api_routes.py
@@ -2,6 +2,7 @@
2
3
import asyncio
4
import io
5
+from typing import Optional
6
import zipfile
7
8
from api.auth.auth_utils import get_authenticated_user
@@ -800,7 +801,7 @@ async def delete_all_details(request: Request):
800
801
802
803
@router.get("/batch-history")
-async def list_batch_history(request: Request, offset: int = 0, limit: int = 25):
804
+async def list_batch_history(request: Request, offset: int = 0,limit: Optional[int] = None):
805
"""
806
Retrieve batch processing history for the authenticated user.
807
0 commit comments