mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
10 lines
293 B
Python
10 lines
293 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "folder"
|
|
urlpatterns = [
|
|
path('workspace/<str:workspace_id>/<str:source>/folder', views.FolderView.as_view()),
|
|
path('workspace/<str:workspace_id>/<str:source>/folder/<str:folder_id>', views.FolderView.Operate.as_view()),
|
|
]
|