This commit is contained in:
Aevann1 2022-02-21 03:58:12 +02:00
parent 5d47158e5f
commit 661bc9f045
6 changed files with 57 additions and 26 deletions

View file

@ -304,7 +304,21 @@ def submit_contact(v):
body_html += f"<p>{url}</p>"
else: return {"error": "Image/Video files only"}, 400
send_admin(v.id, body_html)
new_comment = Comment(author_id=v.id,
parent_submission=None,
level=1,
body_html=body_html,
sentto=2
)
g.db.add(new_comment)
g.db.flush()
for admin in g.db.query(User).filter(User.admin_level > 1).all():
notif = Notification(comment_id=new_comment.id, user_id=admin.id)
g.db.add(notif)
g.db.commit()
return render_template("contact.html", v=v, msg="Your message has been sent.")