Change default value for notify_changes_by_me for WatcherMixin

remotes/origin/enhancement/email-actions
Andrey Antukh 2013-10-23 22:30:17 +02:00
parent b94465500d
commit f9187d8718
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class WatcherMixin(object):
default="all_owned_projects", default="all_owned_projects",
choices=NOTIFY_LEVEL_CHOICES, choices=NOTIFY_LEVEL_CHOICES,
verbose_name=_(u"notify level")) verbose_name=_(u"notify level"))
notify_changes_by_me = models.BooleanField(null=True, blank=True, default=True, notify_changes_by_me = models.BooleanField(null=True, blank=True, default=False,
verbose_name=_(u"notify changes by me")) verbose_name=_(u"notify changes by me"))
class Meta: class Meta: