diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-21 16:00:48 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-21 16:00:48 -0500 |
commit | 2c79dbc5ffb249cfaf5ae11fc8565bc7f4256e09 (patch) | |
tree | d9f10b76aed8c9ba544a0f5af3c4e49981cc3329 /mediagoblin/edit/views.py | |
parent | 0cdebda7fc533384bd725412365325edcbeb038c (diff) | |
parent | a30d2d8b6ca0837737e92b09bac74c4504ba0182 (diff) | |
download | mediagoblin-2c79dbc5ffb249cfaf5ae11fc8565bc7f4256e09.tar.lz mediagoblin-2c79dbc5ffb249cfaf5ae11fc8565bc7f4256e09.tar.xz mediagoblin-2c79dbc5ffb249cfaf5ae11fc8565bc7f4256e09.zip |
Merge remote-tracking branch 'refs/remotes/rodney757/notifications'
Diffstat (limited to 'mediagoblin/edit/views.py')
-rw-r--r-- | mediagoblin/edit/views.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mediagoblin/edit/views.py b/mediagoblin/edit/views.py index 6aa2acd9..a11cb932 100644 --- a/mediagoblin/edit/views.py +++ b/mediagoblin/edit/views.py @@ -228,10 +228,12 @@ def edit_account(request): user = request.user form = forms.EditAccountForm(request.form, wants_comment_notification=user.wants_comment_notification, - license_preference=user.license_preference) + license_preference=user.license_preference, + wants_notifications=user.wants_notifications) if request.method == 'POST' and form.validate(): user.wants_comment_notification = form.wants_comment_notification.data + user.wants_notifications = form.wants_notifications.data user.license_preference = form.license_preference.data |