Websites being indexed now show up on the homepage

This commit is contained in:
Simon
2018-06-12 21:51:02 -04:00
parent bccb1d0dfd
commit 24ef493245
6 changed files with 25 additions and 20 deletions

View File

@@ -43,7 +43,7 @@ def get_completed_tasks():
def get_current_tasks():
current_tasks = tm.get_current_tasks()
return current_tasks
return json.dumps([t.to_json() for t in current_tasks])
@app.route("/file_list/<int:website_id>/")