Show poussetaches tasks in the admin
This commit is contained in:
14
app.py
14
app.py
@@ -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():
|
||||
|
Reference in New Issue
Block a user