Remove HR module; provision agent sessions via /employees

This commit is contained in:
Abhimanyu Saharan
2026-02-02 16:48:17 +05:30
parent 8f8e3b7c67
commit 1bbc65c983
7 changed files with 238 additions and 445 deletions

View File

@@ -1,8 +1,7 @@
from app.models.activity import Activity
from app.models.org import Department, Employee
from app.models.projects import Project, ProjectMember
from app.models.work import Task, TaskComment
from app.models.hr import HeadcountRequest, EmploymentAction
from app.models.activity import Activity
__all__ = [
"Department",
@@ -11,7 +10,5 @@ __all__ = [
"ProjectMember",
"Task",
"TaskComment",
"HeadcountRequest",
"EmploymentAction",
"Activity",
]