diff --git a/beproud/django/notify/models.py b/beproud/django/notify/models.py index c48576a..061ef30 100644 --- a/beproud/django/notify/models.py +++ b/beproud/django/notify/models.py @@ -59,7 +59,7 @@ class NotifySetting(models.Model): notify_type = models.CharField(_('notify type'), max_length=100, db_index=True) media = models.CharField(_('media'), max_length=100, choices=MediaChoices(), db_index=True) - send = models.BooleanField(_('send?')) + send = models.BooleanField(_('send?'), default=False) def __unicode__(self): return u"%s (%s, %s, %s)" % (self.target, self.notify_type, self.media, diff --git a/setup.py b/setup.py index b0c0f40..1c73cd8 100644 --- a/setup.py +++ b/setup.py @@ -5,10 +5,10 @@ setup( name='bpnotify', - version='0.44', + version='0.45', description='Notification routing for Django', - author='Ian Lewis', - author_email='ian@beproud.jp', + author='BeProud', + author_email='project@beproud.jp', url='https://github.com/beproud/bpnotify/', classifiers=[ 'Development Status :: 3 - Alpha',