This commit is contained in:
Aevann1 2022-01-17 23:26:03 +02:00
parent 8a84300137
commit cb59a39c9f
6 changed files with 38 additions and 24 deletions

View file

@ -207,6 +207,8 @@ def award_post(pid, v):
if not post:
return {"error": "That post doesn't exist."}, 404
if kind == "ghosts" and post.distinguish_level: return {"error": "You can't use the ghosts award on distinguished posts."}, 403
post_award.submission_id = post.id
g.db.add(post_award)
@ -405,6 +407,8 @@ def award_comment(cid, v):
if not c:
return {"error": "That comment doesn't exist."}, 404
if kind == "ghosts" and c.distinguish_level: return {"error": "You can't use the ghosts award on distinguished comments."}, 403
comment_award.comment_id = c.id
g.db.add(comment_award)