disallow permabanned hole mods from pinning or unpinning

remotes/1693176582716663532/tmp_refs/heads/watchparty
Aevann1 2022-09-26 10:58:43 +02:00
parent e474a5f42d
commit ffa83ad3e7
1 changed files with 2 additions and 2 deletions

View File

@ -513,7 +513,7 @@ def subs(v):
return render_template('sub/subs.html', v=v, subs=subs) return render_template('sub/subs.html', v=v, subs=subs)
@app.post("/hole_pin/<pid>") @app.post("/hole_pin/<pid>")
@auth_required @is_not_permabanned
def hole_pin(v, pid): def hole_pin(v, pid):
p = get_post(pid) p = get_post(pid)
@ -531,7 +531,7 @@ def hole_pin(v, pid):
return {"message": f"Post pinned to /h/{p.sub} successfully!"} return {"message": f"Post pinned to /h/{p.sub} successfully!"}
@app.post("/hole_unpin/<pid>") @app.post("/hole_unpin/<pid>")
@auth_required @is_not_permabanned
def hole_unpin(v, pid): def hole_unpin(v, pid):
p = get_post(pid) p = get_post(pid)