From 0f58b0d3d073e200177bb0151afaf3afa10279b9 Mon Sep 17 00:00:00 2001 From: Aaron Tan Date: Thu, 1 Dec 2016 21:00:40 -0500 Subject: [PATCH] Add missing new_in_310 labels to workflow views. --- awx/api/views.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/awx/api/views.py b/awx/api/views.py index de88b44518..12f302201d 100644 --- a/awx/api/views.py +++ b/awx/api/views.py @@ -3046,6 +3046,7 @@ class WorkflowJobTemplateJobsList(SubListAPIView): parent_model = WorkflowJobTemplate relationship = 'workflow_jobs' parent_key = 'workflow_job_template' + new_in_310 = True class WorkflowJobTemplateSchedulesList(SubListCreateAttachDetachAPIView): @@ -3057,6 +3058,7 @@ class WorkflowJobTemplateSchedulesList(SubListCreateAttachDetachAPIView): parent_model = WorkflowJobTemplate relationship = 'schedules' parent_key = 'unified_job_template' + new_in_310 = True class WorkflowJobTemplateNotificationTemplatesAnyList(SubListCreateAttachDetachAPIView):