Show poussetaches tasks in the admin

This commit is contained in:
Thomas Sileo
2019-04-07 12:27:48 +02:00
parent 8327f8390e
commit 51bc885a81
2 changed files with 102 additions and 1 deletions

14
app.py
View File

@@ -89,7 +89,7 @@ from utils.media import Kind
from poussetaches import PousseTaches
phost = "http://" + os.getenv("COMPOSE_PROJECT_NAME", "")
p = PousseTaches(f"{phost}_poussetaches_1:7991", f"{phost}_web_1:5005")
p = PousseTaches("http://localhost:7991", "") # f"{phost}_poussetaches_1:7991", f"{phost}_web_1:5005")
back = activitypub.MicroblogPubBackend()
@@ -1399,6 +1399,18 @@ def admin():
)
@app.route("/admin/tasks", methods=["GET"])
@login_required
def admin_tasks():
return render_template(
"admin_tasks.html",
success=p.get_success(),
dead=p.get_dead(),
waiting=p.get_waiting(),
)
@app.route("/admin/lookup", methods=["GET", "POST"])
@login_required
def admin_lookup():