From 0d7bbb4389f697e4a0786945f72d382a71002ce9 Mon Sep 17 00:00:00 2001 From: Gabe Muniz Date: Wed, 8 Feb 2023 16:19:29 -0500 Subject: [PATCH] [AAP-8682] adding Schedule to dependent_export to allow previous behavior on job template export --- awxkit/awxkit/api/pages/api.py | 3 +++ 1 file changed, 3 insertions(+) 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'),