mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 03:10:42 -03:30
Added missing permission grants on a Inventory updater and executor roles
This commit is contained in:
parent
55564cc2b4
commit
9e79cf733f
@ -111,10 +111,12 @@ class Inventory(CommonModel, ResourceMixin):
|
||||
updater_role = ImplicitRoleField(
|
||||
role_name='Inventory Updater',
|
||||
role_description='May update the inventory',
|
||||
permissions = {'read': True, 'update': True}
|
||||
)
|
||||
executor_role = ImplicitRoleField(
|
||||
role_name='Inventory Executor',
|
||||
role_description='May execute jobs against this inventory',
|
||||
permissions = {'read': True, 'execute': True}
|
||||
)
|
||||
|
||||
def get_absolute_url(self):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user