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

This commit is contained in:
tsygankoviva 2026-09-03 14:46:15 +03:00
parent a26125b439
commit b498588dbe

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,