Added missing permission grants on a Inventory updater and executor roles

This commit is contained in:
Akita Noek 2016-03-16 13:46:15 -04:00
parent 55564cc2b4
commit 9e79cf733f

View File

@ -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):