mirror of
https://git.wownero.com/lza_menace/suchwow.git
synced 2024-08-15 01:03:19 +00:00
only post to discord when approving posts
This commit is contained in:
parent
c7168b21ee
commit
9d5ef70271
1 changed files with 1 additions and 6 deletions
|
@ -156,14 +156,9 @@ def approve(id):
|
||||||
post_webhook(f"Post [{post.id}]({url}) approved :white_check_mark: by `{get_session_user()}` :fieri_parrot:")
|
post_webhook(f"Post [{post.id}]({url}) approved :white_check_mark: by `{get_session_user()}` :fieri_parrot:")
|
||||||
flash("Approved")
|
flash("Approved")
|
||||||
if current_app.config["DEBUG"] is False:
|
if current_app.config["DEBUG"] is False:
|
||||||
if not post.to_reddit:
|
|
||||||
_r = make_post(post)
|
|
||||||
if not post.to_discord:
|
if not post.to_discord:
|
||||||
_d = post_discord_webhook(post)
|
_d = post_discord_webhook(post)
|
||||||
if _r and _d:
|
post_webhook(f"Post [{post.id}]({url}) submitted :dab_parrot: to Discord.")
|
||||||
post_webhook(f"Post [{post.id}]({url}) submitted :dab_parrot: to Reddit and Discord.")
|
|
||||||
else:
|
|
||||||
post_webhook(f"Post [{post.id}]({url}) failed :this-is-fine-fire: to post to socials...Reddit: {_r} - Discord: {_d}")
|
|
||||||
return redirect(url_for("mod_queue"))
|
return redirect(url_for("mod_queue"))
|
||||||
else:
|
else:
|
||||||
flash("You can't approve this")
|
flash("You can't approve this")
|
||||||
|
|
Loading…
Reference in a new issue