mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.1 KiB
25 lines
1.1 KiB
# ~*~ coding: utf-8 ~*~
|
|
from __future__ import unicode_literals
|
|
from django.urls import path
|
|
|
|
from .. import views
|
|
|
|
__all__ = ["urlpatterns"]
|
|
|
|
app_name = "ops"
|
|
|
|
urlpatterns = [
|
|
# Resource Task url
|
|
path('task/', views.TaskListView.as_view(), name='task-list'),
|
|
path('task/<uuid:pk>/', views.TaskDetailView.as_view(), name='task-detail'),
|
|
path('task/<uuid:pk>/adhoc/', views.TaskAdhocView.as_view(), name='task-adhoc'),
|
|
path('task/<uuid:pk>/executions/', views.TaskExecutionView.as_view(), name='task-execution'),
|
|
path('adhoc/<uuid:pk>/', views.AdHocDetailView.as_view(), name='adhoc-detail'),
|
|
path('adhoc/<uuid:pk>/executions/', views.AdHocExecutionView.as_view(), name='adhoc-execution'),
|
|
path('adhoc/executions/<uuid:pk>/', views.AdHocExecutionDetailView.as_view(), name='adhoc-execution-detail'),
|
|
path('celery/task/<uuid:pk>/log/', views.CeleryTaskLogView.as_view(), name='celery-task-log'),
|
|
|
|
path('command-executions/', views.CommandExecutionListView.as_view(), name='command-execution-list'),
|
|
path('command-executions/create/', views.CommandExecutionCreateView.as_view(), name='command-execution-create'),
|
|
]
|