forked from rDrama/rDrama
1
0
Fork 0

debugging

master
Aevann 2023-01-22 06:44:39 +02:00
parent d6a9f31de2
commit 21d2ba8bd3
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ messages = cache.get(f'messages') or {
def chat(v):
if not v.admin_level and TRUESCORE_CHAT_MINIMUM and v.truescore < TRUESCORE_CHAT_MINIMUM:
abort(403, f"Need at least {TRUESCORE_CHAT_MINIMUM} truescore for access to chat.")
if v.id == 1: print(messages[f"{SITE_FULL}/chat"], flush=True)
return render_template("chat.html", v=v, messages=messages[f"{SITE_FULL}/chat"])
@app.get("/admin/chat")