Establishment manager

This commit is contained in:
Виктор Гладких 2019-10-16 11:02:26 +03:00
parent 04a6bbea19
commit 3271a6fed9
3 changed files with 4 additions and 1 deletions

View File

View File

View File

@ -75,7 +75,6 @@ class IsStandardUser(IsGuest):
return False
class IsContentPageManager(IsStandardUser):
"""
Object-level permission to only allow owners of an object to edit it.
@ -141,3 +140,7 @@ class IsCommentModerator(IsStandardUser):
return True
return False
class IsEstablishmentManager(IsStandardUser):
pass