From 3d75e1960e2d0687cdae00ede567141ca0c94dee Mon Sep 17 00:00:00 2001 From: tsygankoviva Date: Mon, 17 Aug 2026 11:03:43 +0300 Subject: [PATCH] =?UTF-8?q?projects-fix:=20=D1=83=D0=B1=D1=80=D0=B0=D0=BB?= =?UTF-8?q?=20=D0=BF=D0=B0=D0=B3=D0=B8=D0=BD=D0=B0=D1=86=D0=B8=D1=8E=20?= =?UTF-8?q?=D0=B2=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=B0=D1=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/src/api/v1/projects.py | 4 ---- 1 file changed, 4 deletions(-) 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)