feat: cms users institution department manager

This commit is contained in:
2026-06-11 10:37:29 +08:00
parent 1dc9141856
commit 32915bc6b4
39 changed files with 2403 additions and 75 deletions
+8
View File
@@ -0,0 +1,8 @@
from django.urls import path, include
# apps/cms 是 CMS 薄壳:聚合各领域 app 的 /api/cms/ 路由 + 未来的跨领域看板。
# 机构管理已迁至 organization 域(apps/organization),在此聚合。
urlpatterns = [
path('', include('apps.organization.urls')), # 机构、科室
path('', include('apps.user.cms_urls')), # 用户
]