Browse Source

Users with administrator can execute all permissions

This isn't totally true because of heiarchy, but we can think about how
to handle that later as it requires interface changes.
feature/storage
Andrei 8 years ago
parent
commit
13c9721190
  1. 4
      disco/types/permissions.py

4
disco/types/permissions.py

@ -40,6 +40,10 @@ class PermissionValue(object):
self.value = value self.value = value
def can(self, *perms): def can(self, *perms):
# Administrator permission overwrites all others
if self.administrator:
return True
for perm in perms: for perm in perms:
if isinstance(perm, EnumAttr): if isinstance(perm, EnumAttr):
perm = perm.value perm = perm.value

Loading…
Cancel
Save