From 07ba521b8bc959f2d7a9aab7f368f4c35da8877e Mon Sep 17 00:00:00 2001 From: Jeff Bradberry Date: Fri, 27 Mar 2020 16:29:31 -0400 Subject: [PATCH] Enable schedules --- awxkit/awxkit/api/pages/api.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/awxkit/awxkit/api/pages/api.py b/awxkit/awxkit/api/pages/api.py index 342c36c56c..8b45213459 100644 --- a/awxkit/awxkit/api/pages/api.py +++ b/awxkit/awxkit/api/pages/api.py @@ -31,6 +31,7 @@ EXPORTABLE_DEPENDENT_OBJECTS = [ 'Labels', 'SurveySpec', 'WorkflowJobTemplateNodes', + 'Schedules', ] @@ -51,6 +52,7 @@ NATURAL_KEYS = { 'notification_template': ('organization', 'name'), 'label': ('organization', 'name'), # FIXME: label will need to be fully constructed from this 'workflow_job_template_node': ('workflow_job_template', 'identifier'), + 'schedule': ('unified_job_template', 'name'), }