remove the global /api/v2/job_events/ endpoint

This commit is contained in:
Ryan Petrello
2021-03-01 13:37:09 -05:00
committed by Jim Ladd
parent 08b96a0bd7
commit b19bcdd882
3 changed files with 6 additions and 11 deletions

View File

@@ -3,11 +3,10 @@
from django.conf.urls import url
from awx.api.views import JobEventList, JobEventDetail, JobEventChildrenList, JobEventHostsList
from awx.api.views import JobEventDetail, JobEventChildrenList, JobEventHostsList
urls = [
url(r'^$', JobEventList.as_view(), name='job_event_list'),
url(r'^(?P<pk>[0-9]+)/$', JobEventDetail.as_view(), name='job_event_detail'),
url(r'^(?P<pk>[0-9]+)/children/$', JobEventChildrenList.as_view(), name='job_event_children_list'),
url(r'^(?P<pk>[0-9]+)/hosts/$', JobEventHostsList.as_view(), name='job_event_hosts_list'),