From c1734d74cf1506b51a46ee3b490f53af4c18c712 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Fri, 28 Mar 2014 12:52:28 -0400 Subject: [PATCH] Use unified job set for joining the schedule and unified jobs --- awx/api/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/views.py b/awx/api/views.py index e3c2242a05..98d397469f 100644 --- a/awx/api/views.py +++ b/awx/api/views.py @@ -256,7 +256,7 @@ class ScheduleUnifiedJobsList(SubListAPIView): model = UnifiedJob serializer_class = UnifiedJobSerializer parent_model = Schedule - relationship = '' + relationship = 'unifiedjob_set' view_name = 'Schedule Jobs List' class AuthTokenView(APIView):