aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-02-06 22:02:04 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-02-06 22:02:04 +0100
commit920b1ef54a42d58b25834cf1ae51e327392825cb (patch)
tree67b5b09c9defbb735d958cc4471b99d82e29fc80
parentTest if the id of the feed is valid. (diff)
downloadnewspipe-920b1ef54a42d58b25834cf1ae51e327392825cb.tar.gz
newspipe-920b1ef54a42d58b25834cf1ae51e327392825cb.tar.bz2
newspipe-920b1ef54a42d58b25834cf1ae51e327392825cb.zip
New flash message.
-rw-r--r--pyaggr3g470r/views.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index 33be7d7d..84de9708 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -321,6 +321,7 @@ def index_database():
"""
user = models.User.objects(email=g.user.email).first()
fastsearch.create_index(user.feeds)
+ flash('Database indexed.', 'success')
return redirect(url_for('home'))
@app.route('/export/', methods=['GET'])
bgstack15