Add phase 4 registration and renewal lifecycle management

This commit is contained in:
A R R R Associates
2026-07-23 12:05:41 +05:30
parent 0f7d6f4396
commit 929ed26737
14 changed files with 507 additions and 0 deletions
+2
View File
@@ -33,6 +33,7 @@ from app.modules.firm_admin_dashboard.ui import router as firm_admin_dashboard_r
from app.modules.aqmm_dashboard.ui import router as aqmm_dashboard_router
from app.modules.peer_review_export.ui import router as peer_review_export_router
from app.modules.bank_statement_analyzer.ui import router as bank_statement_analyzer_router
from app.modules.registrations.ui import router as registrations_ui_router
def mount_ui(app: FastAPI) -> None:
@@ -64,6 +65,7 @@ def mount_ui(app: FastAPI) -> None:
app.include_router(system_admin_dashboard_router)
app.include_router(work_detail_ui_router)
app.include_router(clients_ui_router)
app.include_router(registrations_ui_router)
app.include_router(employees_ui_router)
app.include_router(manager_dashboard_router)
app.include_router(managers_ui_router)