8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-02 15:43:28 +00:00

Merge branch 'fix_tickets_perm_name' into 'master'

Fix tickets permissions name

See merge request federez/re2o!493
This commit is contained in:
Laouen Fernet 2020-03-29 01:10:32 +01:00
commit 43d207590b

View file

@ -74,13 +74,13 @@ class Ticket(AclMixin, models.Model):
""" Check that the user has the right to view the ticket
or that it is the author"""
if (
not user_request.has_perm("tickets.view_ticket")
not user_request.has_perm("tickets.view_tickets")
and self.user != user_request
):
return (
False,
_("You don't have the right to view other tickets than yours."),
("tickets.view_ticket",),
("tickets.view_tickets",),
)
else:
return True, None, None