From d7f26f417d185790945d593944140200209b5f3f Mon Sep 17 00:00:00 2001 From: Wayne Witzel III Date: Mon, 19 Mar 2018 15:20:48 -0400 Subject: [PATCH] Reword help text for manage org auth --- awx/main/access.py | 2 +- awx/main/conf.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/main/access.py b/awx/main/access.py index 691e202a93..b3ee282260 100644 --- a/awx/main/access.py +++ b/awx/main/access.py @@ -547,7 +547,7 @@ class UserAccess(BaseAccess): return False def can_attach(self, obj, sub_obj, relationship, *args, **kwargs): - if not settings.MANAGE_ORGANIZTAION_AUTH: + if not settings.MANAGE_ORGANIZATION_AUTH: return False # Reverse obj and sub_obj, defer to RoleAccess if this is a role assignment. diff --git a/awx/main/conf.py b/awx/main/conf.py index 154de417e4..593607c078 100644 --- a/awx/main/conf.py +++ b/awx/main/conf.py @@ -46,8 +46,8 @@ register( register( 'MANAGE_ORGANIZATION_AUTH', field_class=fields.BooleanField, - label=_('Organizations Can Manage Users and Teams'), - help_text=_('Controls whether Orgainzations have the privileges to create and manage users and teams. ' + label=_('Organization Admins Can Manage Users and Teams'), + help_text=_('Controls whether any Organization Admin has the privileges to create and manage users and teams. ' 'You may want to disable this ability if you are using an LDAP or SAML integration.'), category=_('System'), category_slug='system',