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.
15 lines
449 B
15 lines
449 B
# ~*~ coding: utf-8 ~*~
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
from django.conf.urls import url
|
|
from .. import views
|
|
|
|
__all__ = ["urlpatterns"]
|
|
|
|
urlpatterns = [
|
|
# TResource Task url
|
|
url(r'^task/$', views.TaskListView.as_view(), name='task-list'),
|
|
url(r'^task/(?P<pk>[0-9a-zA-Z\-]+)/$', views.TaskDetailView.as_view(), name='task-detail'),
|
|
url(r'^task/(?P<pk>[0-9a-zA-Z\-]+)/run/$', views.TaskRunView.as_view(), name='task-run'),
|
|
] |