1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 09:51:09 +03:00

Switch up the api end point for unified jobs

This commit is contained in:
Matthew Jones 2014-03-24 11:48:04 -04:00
parent af231cc8b7
commit 0f1fc77be3
2 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ v1_urls = patterns('awx.api.views',
url(r'^me/$', 'user_me_list'),
url(r'^dashboard/$', 'dashboard_view'),
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'^users/', include(user_urls)),
url(r'^projects/', include(project_urls)),

View File

@ -293,7 +293,7 @@ class SchedulesList(APIView):
def post(self, request):
return Response({})
class UnifiedJobTemplateList(APIView):
class UnifiedJobsList(APIView):
view_name = "Unified Job Templates"