示例#1
0
 def can_create(cls, user, context):
     # Who can create a new unit of measure for products ?
     # * DES administrators
     try:
         allowed_users = DES.admins_all()
         return user in allowed_users
     except KeyError:
         raise WrongPermissionCheck('CREATE', cls, context)
示例#2
0
 def can_create(cls, user, context):
     # Who can add a new certification ?
     # * DES administrators
     try:
         allowed_users = DES.admins_all()
         return user in allowed_users
     except KeyError:
         raise WrongPermissionCheck('CREATE', cls, context)
示例#3
0
 def can_delete(self, user, context):
     # Who can delete an existing unit of measure for products ?
     # * DES administrators
     allowed_users = DES.admins_all()
     return user in allowed_users
示例#4
0
 def can_edit(self, user, context):
     # Who can edit details of an existing unit of measure for products ?
     # * DES administrators
     allowed_users = DES.admins_all()
     return user in allowed_users
示例#5
0
 def can_delete(self, user, context):
     # Who can delete an existing category ?
     # * DES administrators
     allowed_users = DES.admins_all()
     return user in allowed_users
示例#6
0
 def can_edit(self, user, context):
     # Who can edit details of an existing category ?
     # * DES administrators
     allowed_users = DES.admins_all()
     return user in allowed_users