From 1f0cd8df71445f35474301acbc15d144d09fde83 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Wed, 23 Sep 2020 08:36:52 -0400 Subject: [PATCH] expose GALAXY_IGNORE_CERTS in the job settings UI --- awx/main/conf.py | 2 +- .../configuration/forms/jobs-form/configuration-jobs.form.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/awx/main/conf.py b/awx/main/conf.py index ae3ad4533d..7e6d3485fa 100644 --- a/awx/main/conf.py +++ b/awx/main/conf.py @@ -440,7 +440,7 @@ register( field_class=fields.BooleanField, default=False, label=_('Ignore Ansible Galaxy SSL Certificate Verification'), - help_text=_('If set to true, certificate validation will not be done when' + help_text=_('If set to true, certificate validation will not be done when ' 'installing content from any Galaxy server.'), category=_('Jobs'), category_slug='jobs' diff --git a/awx/ui/client/src/configuration/forms/jobs-form/configuration-jobs.form.js b/awx/ui/client/src/configuration/forms/jobs-form/configuration-jobs.form.js index 0f40144d4f..0cf4def48d 100644 --- a/awx/ui/client/src/configuration/forms/jobs-form/configuration-jobs.form.js +++ b/awx/ui/client/src/configuration/forms/jobs-form/configuration-jobs.form.js @@ -65,6 +65,9 @@ export default ['i18n', function(i18n) { PROJECT_UPDATE_VVV: { type: 'toggleSwitch', }, + GALAXY_IGNORE_CERTS: { + type: 'toggleSwitch', + }, AWX_ROLES_ENABLED: { type: 'toggleSwitch', },