aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/user.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-21 08:19:09 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-21 08:19:09 +0200
commitcb81d058e5738bd9d5a0fab3334dec2371ca5013 (patch)
treef23b8637ab3f669fb0ea0083e8a2a7ec4a450741 /src/web/views/user.py
parentAdd new stop words. (diff)
downloadnewspipe-cb81d058e5738bd9d5a0fab3334dec2371ca5013.tar.gz
newspipe-cb81d058e5738bd9d5a0fab3334dec2371ca5013.tar.bz2
newspipe-cb81d058e5738bd9d5a0fab3334dec2371ca5013.zip
add column webpage in the user table
Diffstat (limited to 'src/web/views/user.py')
-rw-r--r--src/web/views/user.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/views/user.py b/src/web/views/user.py
index c7c318e3..df6508f5 100644
--- a/src/web/views/user.py
+++ b/src/web/views/user.py
@@ -107,7 +107,8 @@ def profile():
'email': form.email.data,
'password': form.password.data,
'refresh_rate': form.refresh_rate.data,
- 'is_public_profile': form.is_public_profile.data})
+ 'is_public_profile': form.is_public_profile.data,
+ 'webpage': form.webpage.data})
flash(gettext('User %(nick)s successfully updated',
nick=user.nickname), 'success')
bgstack15