diff --git a/api/src/api/v1/projects.py b/api/src/api/v1/projects.py index 98c8825..1c896f5 100644 --- a/api/src/api/v1/projects.py +++ b/api/src/api/v1/projects.py @@ -74,8 +74,6 @@ async def get_projects( @router.get("/projects/with-reports") async def get_projects_with_reports( - offset: int = 0, - limit: int = 100, year: Optional[int] = None, branch_id: Optional[int] = None, db: AsyncSession = Depends(get_db), @@ -87,8 +85,6 @@ async def get_projects_with_reports( with_count=True, year=year, branch_id=branch_id, - offset=offset, - limit=limit, ) return BaseListResponse(result=projects, count=count)