This commit is contained in:
Aevann1 2021-07-31 08:51:58 +02:00
parent bcb877aaf8
commit aebe6b9cb4
2 changed files with 57 additions and 7 deletions

View file

@ -159,9 +159,11 @@ def post_pid_comment_cid(cid, pid=None, anything=None, v=None):
@app.post("/api/comment")
@app.post("/api/v1/comment")
@limiter.limit("6/minute")
@is_not_banned
@validate_formkey
@api("create")
def api_comment(v):
parent_submission = request.form.get("submission")
@ -548,12 +550,15 @@ def api_comment(v):
v.comment_count = v.comments.filter(Comment.parent_submission != None).filter_by(is_banned=False, deleted_utc=0).count()
g.db.add(v)
if request.headers.get("Authorization"): return c.json
else: return render_template("comments.html",
v=v,
comments=[c],
render_replies=False,
)
return {"html": lambda: jsonify({"html": render_template("comments.html",
v=v,
comments=[c],
render_replies=False,
)}),
"api": lambda: c.json
}