remotes/1693045480750635534/spooky-22
Aevann1 2021-09-16 13:08:06 +02:00
parent b3366f5b69
commit 48e032f010
1 changed files with 2 additions and 1 deletions

View File

@ -61,8 +61,8 @@ def participation_stats(v):
return render_template("admin/content_stats.html", v=v, title="Content Statistics", data=data)
@app.get("/paypigs")
@app.get("/patrons")
@app.get("/paypigs")
@auth_desired
def patrons(v):
query = g.db.query(
@ -87,6 +87,7 @@ def patrons(v):
return render_template("patrons.html", v=v, result=result)
@app.get("/admins")
@app.get("/badmins")
@auth_desired
def admins(v):
admins = g.db.query(User).filter_by(admin_level=6).order_by(User.coins.desc()).all()