mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
Remove no effect model property to silence django 1.8 system check warning
This commit is contained in:
parent
11e4f1a7bd
commit
9600f457d8
@ -715,7 +715,6 @@ class PreSetReply(models.Model):
|
|||||||
queues = models.ManyToManyField(
|
queues = models.ManyToManyField(
|
||||||
Queue,
|
Queue,
|
||||||
blank=True,
|
blank=True,
|
||||||
null=True,
|
|
||||||
help_text=_('Leave blank to allow this reply to be used for all '
|
help_text=_('Leave blank to allow this reply to be used for all '
|
||||||
'queues, or select those queues you wish to limit this reply to.'),
|
'queues, or select those queues you wish to limit this reply to.'),
|
||||||
)
|
)
|
||||||
@ -757,7 +756,6 @@ class EscalationExclusion(models.Model):
|
|||||||
queues = models.ManyToManyField(
|
queues = models.ManyToManyField(
|
||||||
Queue,
|
Queue,
|
||||||
blank=True,
|
blank=True,
|
||||||
null=True,
|
|
||||||
help_text=_('Leave blank for this exclusion to be applied to all '
|
help_text=_('Leave blank for this exclusion to be applied to all '
|
||||||
'queues, or select those queues you wish to exclude with this '
|
'queues, or select those queues you wish to exclude with this '
|
||||||
'entry.'),
|
'entry.'),
|
||||||
@ -1061,7 +1059,6 @@ class IgnoreEmail(models.Model):
|
|||||||
queues = models.ManyToManyField(
|
queues = models.ManyToManyField(
|
||||||
Queue,
|
Queue,
|
||||||
blank=True,
|
blank=True,
|
||||||
null=True,
|
|
||||||
help_text=_('Leave blank for this e-mail to be ignored on all '
|
help_text=_('Leave blank for this e-mail to be ignored on all '
|
||||||
'queues, or select those queues you wish to ignore this e-mail '
|
'queues, or select those queues you wish to ignore this e-mail '
|
||||||
'for.'),
|
'for.'),
|
||||||
|
Loading…
Reference in New Issue
Block a user