mirror of https://github.com/jumpserver/jumpserver
				
				
				
			
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
# ~*~ coding: utf-8 ~*~
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
from django.urls import path
 | 
						|
from rest_framework.routers import DefaultRouter
 | 
						|
from rest_framework_bulk.routes import BulkRouter
 | 
						|
from .. import api
 | 
						|
 | 
						|
 | 
						|
app_name = "ops"
 | 
						|
 | 
						|
router = DefaultRouter()
 | 
						|
bulk_router = BulkRouter()
 | 
						|
 | 
						|
bulk_router.register(r'tasks', api.TaskViewSet, 'task')
 | 
						|
router.register(r'adhoc', api.AdHocViewSet, 'adhoc')
 | 
						|
router.register(r'adhoc-executions', api.AdHocRunHistoryViewSet, 'execution')
 | 
						|
router.register(r'command-executions', api.CommandExecutionViewSet, 'command-execution')
 | 
						|
router.register(r'celery/period-tasks', api.CeleryPeriodTaskViewSet, 'celery-period-task')
 | 
						|
 | 
						|
urlpatterns = [
 | 
						|
    path('tasks/<uuid:pk>/run/', api.TaskRun.as_view(), name='task-run'),
 | 
						|
    path('celery/task/<uuid:pk>/log/', api.CeleryTaskLogApi.as_view(), name='celery-task-log'),
 | 
						|
    path('celery/task/<uuid:pk>/result/', api.CeleryResultApi.as_view(), name='celery-result'),
 | 
						|
 | 
						|
    path('ansible/task/<uuid:pk>/log/', api.AnsibleTaskLogApi.as_view(), name='ansible-task-log'),
 | 
						|
]
 | 
						|
 | 
						|
urlpatterns += router.urls
 | 
						|
urlpatterns += bulk_router.urls
 |