diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-08 15:07:07 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-20 08:10:50 -0700 |
commit | 93d805ad6b0e5324c515323d2fc0a4a7ea3f1dad (patch) | |
tree | ef393bce2e8f8d6cc587225a7c5733c125c9a914 /mediagoblin/edit/forms.py | |
parent | 4a2aa93c6abeb4831a03a9e8bd7089d0a6f2470e (diff) | |
download | mediagoblin-93d805ad6b0e5324c515323d2fc0a4a7ea3f1dad.tar.lz mediagoblin-93d805ad6b0e5324c515323d2fc0a4a7ea3f1dad.tar.xz mediagoblin-93d805ad6b0e5324c515323d2fc0a4a7ea3f1dad.zip |
add user prefrence for insite notifications
Diffstat (limited to 'mediagoblin/edit/forms.py')
-rw-r--r-- | mediagoblin/edit/forms.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py index 85c243a0..5de1bf96 100644 --- a/mediagoblin/edit/forms.py +++ b/mediagoblin/edit/forms.py @@ -67,6 +67,8 @@ class EditAccountForm(wtforms.Form): normalize_user_or_email_field(allow_user=False)]) wants_comment_notification = wtforms.BooleanField( description=_("Email me when others comment on my media")) + wants_notifications = wtforms.BooleanField( + description=_("Enable/Disable insite notifications")) license_preference = wtforms.SelectField( _('License preference'), [ |