aboutsummaryrefslogtreecommitdiff
path: root/app/views/tasks.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/tasks.py')
-rw-r--r--app/views/tasks.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/views/tasks.py b/app/views/tasks.py
index 9b27f61..e6a5dc4 100644
--- a/app/views/tasks.py
+++ b/app/views/tasks.py
@@ -22,7 +22,6 @@ def new_getmeta_page():
})
@app.route("/tasks/<id>/")
-@login_required
def check_task(id):
result = celery.AsyncResult(id)
status = result.status
@@ -51,7 +50,6 @@ def check_task(id):
abort(422)
if status == "SUCCESS":
- flash("Task complete!", "success")
return redirect(r)
else:
return render_template("tasks/view.html", info=info)