Skip to content

Commit 13c7916

Browse files
resolved bug:15142
1 parent 9b0194b commit 13c7916

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/backend/api/api_routes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import asyncio
44
import io
5+
from typing import Optional
56
import zipfile
67

78
from api.auth.auth_utils import get_authenticated_user
@@ -800,7 +801,7 @@ async def delete_all_details(request: Request):
800801

801802

802803
@router.get("/batch-history")
803-
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):
804805
"""
805806
Retrieve batch processing history for the authenticated user.
806807

0 commit comments

Comments
 (0)