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