From c7cf954476b5747cd8eec80892cbc014188bd7de Mon Sep 17 00:00:00 2001 From: Wayne Witzel III Date: Tue, 21 Jun 2016 14:43:40 -0400 Subject: [PATCH] ensure org auditor can see org credentials --- awx/main/models/credential.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/awx/main/models/credential.py b/awx/main/models/credential.py index 34a5b578b0..89647c873a 100644 --- a/awx/main/models/credential.py +++ b/awx/main/models/credential.py @@ -226,7 +226,8 @@ class Credential(PasswordFieldsModel, CommonModelNameNotUnique, ResourceMixin): read_role = ImplicitRoleField(parent_role=[ 'singleton:' + ROLE_SINGLETON_SYSTEM_AUDITOR, 'use_role', - 'owner_role' + 'owner_role', + 'organization.auditor_role', ]) @property