mart
This commit is contained in:
parent
c71a35e88e
commit
79e0fadfac
4 changed files with 280 additions and 0 deletions
|
@ -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/<id1>/<id2>')
|
||||
@admin_level_required(3)
|
||||
def merge(v, id1, id2):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue