8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-13 22:28:11 +00:00

Crée les droits si ils n'existent pas

This commit is contained in:
Gabriel Detraz 2017-07-02 23:52:43 +02:00 committed by root
parent 97b39c9e46
commit c196a645cb

View file

@ -221,15 +221,20 @@ class User(AbstractBaseUser):
def has_right(self, right):
return Right.objects.filter(user=self).filter(right=ListRight.objects.get(listright=right)).exists()
try:
list_right = ListRight.objects.get(listright=right)
except:
list_right = ListRight(listright=right, gid=get_fresh_gid())
list_right.save()
return Right.objects.filter(user=self).filter(right=list_right).exists()
@cached_property
def is_bureau(self):
return Right.objects.filter(user=self).filter(right=ListRight.objects.get(listright='bureau')).exists()
return self.has_right('bureau')
@cached_property
def is_bofh(self):
return Right.objects.filter(user=self).filter(right=ListRight.objects.get(listright='bofh')).exists()
return self.has_right('bofh')
@cached_property
def is_cableur(self):
@ -237,11 +242,11 @@ class User(AbstractBaseUser):
@cached_property
def is_trez(self):
return Right.objects.filter(user=self).filter(right=ListRight.objects.get(listright='trésorier')).exists()
return self.has_right('trésorier')
@cached_property
def is_infra(self):
return Right.objects.filter(user=self).filter(right=ListRight.objects.get(listright='infra')).exists()
return self.has_right('infra')
@cached_property
def end_adhesion(self):