UnisKB/apps/system_manage/urls.py

12 lines
359 B
Python
Raw Normal View History

2025-05-06 10:35:11 +00:00
from django.urls import path
from . import views
app_name = "system_manage"
urlpatterns = [
2025-06-04 05:05:39 +00:00
path('workspace/<str:workspace_id>/user_resource_permission/user/<str:user_id>',
views.WorkSpaceUserResourcePermissionView.as_view()),
2025-05-07 10:09:45 +00:00
path('email_setting', views.SystemSetting.Email.as_view()),
2025-06-04 09:16:35 +00:00
path('profile', views.SystemProfile.as_view())
2025-05-06 10:35:11 +00:00
]