aboutsummaryrefslogtreecommitdiff
path: root/src/web/forms.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-05 08:55:47 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-05 08:55:47 +0200
commit079cf9e25e6f6ee2ab4ad6a76e972c6b8da4982b (patch)
tree48f447e12df8827608c88637f9e53729112e90e2 /src/web/forms.py
parentBugfix: 'feeds' is now a list. (diff)
downloadnewspipe-079cf9e25e6f6ee2ab4ad6a76e972c6b8da4982b.tar.gz
newspipe-079cf9e25e6f6ee2ab4ad6a76e972c6b8da4982b.tar.bz2
newspipe-079cf9e25e6f6ee2ab4ad6a76e972c6b8da4982b.zip
Removed refresh_rate column for the user table.
Diffstat (limited to 'src/web/forms.py')
-rw-r--r--src/web/forms.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/web/forms.py b/src/web/forms.py
index 59a7bde5..f651c189 100644
--- a/src/web/forms.py
+++ b/src/web/forms.py
@@ -133,9 +133,6 @@ class UserForm(Form):
[validators.Length(min=6, max=35),
validators.Required(lazy_gettext("Please enter your email."))])
password = PasswordField(lazy_gettext("Password"))
- refresh_rate = IntegerField(lazy_gettext("Feeds refresh frequency "
- "(in minutes)"),
- default=60)
submit = SubmitField(lazy_gettext("Save"))
def validate(self):
@@ -160,9 +157,6 @@ class ProfileForm(Form):
password = PasswordField(lazy_gettext("Password"))
password_conf = PasswordField(lazy_gettext("Password Confirmation"))
webpage = URLField(lazy_gettext("Webpage"))
- refresh_rate = IntegerField(lazy_gettext("Feeds refresh frequency "
- "(in minutes)"),
- default=60)
is_public_profile = BooleanField(lazy_gettext("Public profile"),
default=True)
submit = SubmitField(lazy_gettext("Save"))
bgstack15