diff options
author | Gabe Muniz <gmuniz@redhat.com> | 2023-02-08 22:19:29 +0100 |
---|---|---|
committer | Gabe Muniz <gmuniz@redhat.com> | 2023-02-08 22:19:29 +0100 |
commit | 0d7bbb4389f697e4a0786945f72d382a71002ce9 (patch) | |
tree | 9c1cbec49d4942f386759706d56db863cda53d26 /awxkit | |
parent | Merge pull request #13528 from infamousjoeg/fix-13527-conjur-exception-bug (diff) | |
download | awx-0d7bbb4389f697e4a0786945f72d382a71002ce9.tar.xz awx-0d7bbb4389f697e4a0786945f72d382a71002ce9.zip |
[AAP-8682] adding Schedule to dependent_export to allow previous behavior on job template export
Diffstat (limited to 'awxkit')
-rw-r--r-- | awxkit/awxkit/api/pages/api.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/awxkit/awxkit/api/pages/api.py b/awxkit/awxkit/api/pages/api.py index f1f9b6712a..8a89cbb2ff 100644 --- a/awxkit/awxkit/api/pages/api.py +++ b/awxkit/awxkit/api/pages/api.py @@ -38,9 +38,12 @@ EXPORTABLE_RELATIONS = ['Roles', 'NotificationTemplates', 'WorkflowJobTemplateNo DEPENDENT_EXPORT = [ ('JobTemplate', 'Label'), ('JobTemplate', 'SurveySpec'), + ('JobTemplate', 'Schedule'), ('WorkflowJobTemplate', 'Label'), ('WorkflowJobTemplate', 'SurveySpec'), + ('WorkflowJobTemplate', 'Schedule'), ('WorkflowJobTemplate', 'WorkflowJobTemplateNode'), + ('InventorySource', 'Schedule'), ('Inventory', 'Group'), ('Inventory', 'Host'), ('Inventory', 'Label'), |