org-unit-limits: пагинация орг юнитов опциональна #144

Merged
tsygankoviva merged 1 commits from org-unit-limits into test 2026-09-03 14:48:24 +03:00

View File

@ -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,