diff --git a/awx/main/access.py b/awx/main/access.py index a7dd569bee..1fd12f5991 100644 --- a/awx/main/access.py +++ b/awx/main/access.py @@ -322,7 +322,7 @@ class InventoryAccess(BaseAccess): model = Inventory def get_queryset(self, allowed=None, ad_hoc=None): - qs = self.model.accessible_objects(self.user) + qs = self.model.accessible_objects(self.user, {'read':True}) qs = qs.select_related('created_by', 'modified_by', 'organization') return qs