Skip to content

Commit

Permalink
Merge pull request #319 from tony-zhu/master
Browse files Browse the repository at this point in the history
Remove no effect model property to silence django 1.8 system check warning
  • Loading branch information
rossp committed Apr 15, 2015
2 parents 5e0ee1e + 807e0c5 commit 2776b89
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 0 additions & 3 deletions helpdesk/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,6 @@ class PreSetReply(models.Model):
queues = models.ManyToManyField(
Queue,
blank=True,
null=True,
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.'),
)
Expand Down Expand Up @@ -757,7 +756,6 @@ class EscalationExclusion(models.Model):
queues = models.ManyToManyField(
Queue,
blank=True,
null=True,
help_text=_('Leave blank for this exclusion to be applied to all '
'queues, or select those queues you wish to exclude with this '
'entry.'),
Expand Down Expand Up @@ -1061,7 +1059,6 @@ class IgnoreEmail(models.Model):
queues = models.ManyToManyField(
Queue,
blank=True,
null=True,
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 '
'for.'),
Expand Down
3 changes: 1 addition & 2 deletions helpdesk/views/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,5 +324,4 @@ def api_public_resolve(self):

ticket.save()

return api_return(STATUS_OK)

return api_return(STATUS_OK)

0 comments on commit 2776b89

Please sign in to comment.