Remove HR completely: delete hr API; baseline alembic without HR tables

This commit is contained in:
Abhimanyu Saharan
2026-02-02 16:51:06 +05:30
parent 1bbc65c983
commit a678180d07
7 changed files with 121 additions and 201 deletions

View File

@@ -1,16 +0,0 @@
"""HR module removed.
Mission Control now uses the org/people module (employees) for provisioning.
"""
from fastapi import APIRouter
router = APIRouter(prefix="/hr", tags=["hr"])
@router.get("/")
def hr_removed():
return {
"ok": False,
"error": "HR module removed; use /employees endpoints for provisioning",
}