1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

do not copy WFJT labels in 3.1

This commit is contained in:
AlanCoding 2016-12-12 11:21:21 -05:00
parent 75a85cdab2
commit 278d70ed49

View File

@ -366,7 +366,9 @@ class WorkflowJobTemplate(UnifiedJobTemplate, WorkflowJobOptions, SurveyJobTempl
@classmethod
def _get_unified_jt_copy_names(cls):
return (super(WorkflowJobTemplate, cls)._get_unified_jt_copy_names() +
base_list = super(WorkflowJobTemplate, cls)._get_unified_jt_copy_names()
base_list.remove('labels')
return (base_list +
['survey_spec', 'survey_enabled', 'organization'])
def get_absolute_url(self):