diff --git a/files/routes/admin.py b/files/routes/admin.py index 0907b2aa3..52e1e6d10 100644 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -24,6 +24,12 @@ GUMROAD_TOKEN = environ.get("GUMROAD_TOKEN", "").strip() month = datetime.now().strftime('%B') +@app.get("/chat") +@auth_required +def chat( v): + return render_template("chat.html", v=v) + + @app.post('/admin/merge//') @admin_level_required(3) def merge(v, id1, id2):