mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-28 05:42:51 +00:00
12 lines
359 B
Python
12 lines
359 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "system_manage"
|
|
urlpatterns = [
|
|
path('workspace/<str:workspace_id>/user_resource_permission/user/<str:user_id>',
|
|
views.WorkSpaceUserResourcePermissionView.as_view()),
|
|
path('email_setting', views.SystemSetting.Email.as_view()),
|
|
path('profile', views.SystemProfile.as_view())
|
|
]
|