mirror of
https://github.com/ansible/awx.git
synced 2026-02-18 03:30:02 -03:30
Switch up the api end point for unified jobs
This commit is contained in:
@@ -167,7 +167,7 @@ v1_urls = patterns('awx.api.views',
|
|||||||
url(r'^me/$', 'user_me_list'),
|
url(r'^me/$', 'user_me_list'),
|
||||||
url(r'^dashboard/$', 'dashboard_view'),
|
url(r'^dashboard/$', 'dashboard_view'),
|
||||||
url(r'^schedules/$', 'schedules_list'),
|
url(r'^schedules/$', 'schedules_list'),
|
||||||
url(r'^unified_job_templates/$','unified_job_template_list'),
|
url(r'^unified_jobs/$','unified_jobs_list'),
|
||||||
url(r'^organizations/', include(organization_urls)),
|
url(r'^organizations/', include(organization_urls)),
|
||||||
url(r'^users/', include(user_urls)),
|
url(r'^users/', include(user_urls)),
|
||||||
url(r'^projects/', include(project_urls)),
|
url(r'^projects/', include(project_urls)),
|
||||||
|
|||||||
@@ -293,7 +293,7 @@ class SchedulesList(APIView):
|
|||||||
def post(self, request):
|
def post(self, request):
|
||||||
return Response({})
|
return Response({})
|
||||||
|
|
||||||
class UnifiedJobTemplateList(APIView):
|
class UnifiedJobsList(APIView):
|
||||||
|
|
||||||
view_name = "Unified Job Templates"
|
view_name = "Unified Job Templates"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user