From b498588dbe684799ee9f3cba0ab66d193ccb160d Mon Sep 17 00:00:00 2001 From: tsygankoviva Date: Thu, 3 Sep 2026 14:46:15 +0300 Subject: [PATCH] =?UTF-8?q?org-unit-limits:=20=D0=BF=D0=B0=D0=B3=D0=B8?= =?UTF-8?q?=D0=BD=D0=B0=D1=86=D0=B8=D1=8F=20=D0=BE=D1=80=D0=B3=20=D1=8E?= =?UTF-8?q?=D0=BD=D0=B8=D1=82=D0=BE=D0=B2=20=D0=BE=D0=BF=D1=86=D0=B8=D0=BE?= =?UTF-8?q?=D0=BD=D0=B0=D0=BB=D1=8C=D0=BD=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/src/api/v1/org_unit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/api/v1/org_unit.py b/api/src/api/v1/org_unit.py index 9b55700..39b4c49 100644 --- a/api/src/api/v1/org_unit.py +++ b/api/src/api/v1/org_unit.py @@ -16,8 +16,8 @@ router = APIRouter(prefix="/org-unit", tags=["ssp"]) @router.get("/") async def org_unit_list( - offset: int = 0, - limit: int = 100, + offset: int | None = None, + limit: int | None = None, is_active: bool | None = None, is_ssp: bool | None = None, load_users_count: bool = False, -- 2.47.2