mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
13 lines
468 B
Python
13 lines
468 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "system_manage"
|
|
# @formatter:off
|
|
urlpatterns = [
|
|
path('workspace/<str:workspace_id>/user_resource_permission/user/<str:user_id>/resource/<str:resource>', views.WorkSpaceUserResourcePermissionView.as_view()),
|
|
path('email_setting', views.SystemSetting.Email.as_view()),
|
|
path('profile', views.SystemProfile.as_view()),
|
|
path('valid/<str:valid_type>/<int:valid_count>', views.Valid.as_view())
|
|
]
|