feat: filter employees by academic degree

This commit is contained in:
2026-08-26 13:39:30 +03:00
parent 3cfd1d5532
commit f3403b371e
9 changed files with 114 additions and 12 deletions

View File

@@ -28,6 +28,7 @@ def list_employees(
started_from: date | None = None,
started_to: date | None = None,
has_email: bool | None = None,
has_academic_degree: bool | None = None,
sort: str = "full_name",
direction: str = "asc",
limit: int = 50,
@@ -43,6 +44,7 @@ def list_employees(
started_from=started_from,
started_to=started_to,
has_email=has_email,
has_academic_degree=has_academic_degree,
sort=sort,
direction=direction,
limit=limit,