Merge pull request #7055 from wenottingham/paths

Add some format help to a few Tower Configuration items.
This commit is contained in:
Bill Nottingham
2017-07-14 16:49:32 -04:00
committed by GitHub

View File

@@ -157,7 +157,7 @@ register(
field_class=fields.StringListField, field_class=fields.StringListField,
required=False, required=False,
label=_('Paths to hide from isolated jobs'), label=_('Paths to hide from isolated jobs'),
help_text=_('Additional paths to hide from isolated processes.'), help_text=_('Additional paths to hide from isolated processes. Enter one path per line.'),
category=_('Jobs'), category=_('Jobs'),
category_slug='jobs', category_slug='jobs',
) )
@@ -167,7 +167,7 @@ register(
field_class=fields.StringListField, field_class=fields.StringListField,
required=False, required=False,
label=_('Paths to expose to isolated jobs'), label=_('Paths to expose to isolated jobs'),
help_text=_('Whitelist of paths that would otherwise be hidden to expose to isolated jobs.'), help_text=_('Whitelist of paths that would otherwise be hidden to expose to isolated jobs. Enter one path per line.'),
category=_('Jobs'), category=_('Jobs'),
category_slug='jobs', category_slug='jobs',
) )
@@ -271,7 +271,7 @@ register(
field_class=fields.StringListField, field_class=fields.StringListField,
required=False, required=False,
label=_('Ansible Callback Plugins'), label=_('Ansible Callback Plugins'),
help_text=_('List of paths to search for extra callback plugins to be used when running jobs.'), help_text=_('List of paths to search for extra callback plugins to be used when running jobs. Enter one path per line.'),
category=_('Jobs'), category=_('Jobs'),
category_slug='jobs', category_slug='jobs',
) )