1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-30 05:25:29 +03:00

Added an explicit member role, distinct from auditor role

This commit is contained in:
Akita Noek 2016-02-08 15:22:00 -05:00
parent 916dfb62cc
commit f7dc3c0f0d

View File

@ -62,6 +62,11 @@ class Organization(CommonModel, ResourceMixin):
resource_field='resource',
permissions = {'read': True}
)
member_role = ImplicitRoleField(
role_name='Organization Member',
resource_field='resource',
permissions = {'read': True}
)
def get_absolute_url(self):