diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-21 08:19:09 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-21 08:19:09 +0200 |
commit | cb81d058e5738bd9d5a0fab3334dec2371ca5013 (patch) | |
tree | f23b8637ab3f669fb0ea0083e8a2a7ec4a450741 /src/web/views | |
parent | Add new stop words. (diff) | |
download | newspipe-cb81d058e5738bd9d5a0fab3334dec2371ca5013.tar.gz newspipe-cb81d058e5738bd9d5a0fab3334dec2371ca5013.tar.bz2 newspipe-cb81d058e5738bd9d5a0fab3334dec2371ca5013.zip |
add column webpage in the user table
Diffstat (limited to 'src/web/views')
-rw-r--r-- | src/web/views/user.py | 3 |
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') |