From 5775ff142237269645a5502d4bc528a191f1a28f Mon Sep 17 00:00:00 2001 From: Nico Ohnezat Date: Tue, 6 Sep 2022 20:58:26 +0200 Subject: [PATCH] make help text of ALLOW_METRICS_FOR_ANONYMOUS_USERS more clear --- awx/api/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/conf.py b/awx/api/conf.py index 91dacafb36..b9c2ee701a 100644 --- a/awx/api/conf.py +++ b/awx/api/conf.py @@ -101,7 +101,7 @@ register( field_class=fields.BooleanField, default=False, label=_('Allow anonymous users to poll metrics'), - help_text=_('If false, only superusers and system auditors are allowed to poll metrics.'), + help_text=_('If true, anonymous users are allowed to poll metrics.'), category=_('Authentication'), category_slug='authentication', )