File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 5
5
app_name = "module"
6
6
urlpatterns = [
7
7
path ('workspace/<str:workspace_id>/<str:source>/module' , views .ModuleView .Create .as_view ()),
8
- path ('workspace/<str:workspace_id>/<str:source>/module/tree ' , views .ModuleTreeView .as_view ()),
8
+ path ('workspace/<str:workspace_id>/<str:source>/module' , views .ModuleTreeView .as_view ()),
9
9
path ('workspace/<str:workspace_id>/<str:source>/module/<str:module_id>' , views .ModuleView .Operate .as_view ()),
10
10
]
Original file line number Diff line number Diff line change 5
5
app_name = "tool"
6
6
urlpatterns = [
7
7
path ('workspace/<str:workspace_id>/tool' , views .ToolView .Create .as_view ()),
8
- path ('workspace/<str:workspace_id>/tool/tree ' , views .ToolTreeView .as_view ()),
8
+ path ('workspace/<str:workspace_id>/tool' , views .ToolTreeView .as_view ()),
9
9
path ('workspace/<str:workspace_id>/tool/<str:tool_id>' , views .ToolView .Operate .as_view ()),
10
10
]
You can’t perform that action at this time.
0 commit comments