mirror of
https://github.com/ansible/awx.git
synced 2026-05-17 14:27:42 -02:30
Return 404 for ad_hoc_command_events list api. Remove api endtpoint
This commit is contained in:
@@ -3,11 +3,10 @@
|
||||
|
||||
from django.conf.urls import url
|
||||
|
||||
from awx.api.views import AdHocCommandEventList, AdHocCommandEventDetail
|
||||
from awx.api.views import AdHocCommandEventDetail
|
||||
|
||||
|
||||
urls = [
|
||||
url(r'^$', AdHocCommandEventList.as_view(), name='ad_hoc_command_event_list'),
|
||||
url(r'^(?P<pk>[0-9]+)/$', AdHocCommandEventDetail.as_view(), name='ad_hoc_command_event_detail'),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user