8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-12 01:03:09 +00:00

fix: 🐛 Remove clashes in permissions for the ticket app

Permissions clashes of view_* are removed for the ticket app.
This commit is contained in:
Yoann Pétri 2021-02-13 23:24:50 +01:00 committed by klafyvel
parent 7691905b82
commit 2f4b26999e
2 changed files with 0 additions and 3 deletions

View file

@ -87,7 +87,6 @@ class Ticket(AclMixin, models.Model):
request = None
class Meta:
permissions = (("view_ticket", _("Can view a ticket object")),)
verbose_name = _("ticket")
verbose_name_plural = _("tickets")
@ -197,7 +196,6 @@ class CommentTicket(AclMixin, models.Model):
request = None
class Meta:
permissions = (("view_commentticket", _("Can view a ticket object")),)
verbose_name = _("ticket")
verbose_name_plural = _("tickets")

View file

@ -44,4 +44,3 @@ class TicketOption(AclMixin, PreferencesModel):
class Meta:
verbose_name = _("tickets options")
permissions = (("view_ticketoption", _("Can view tickets options")),)