mirror of
https://git.wownero.com/lza_menace/suchwow.git
synced 2024-08-15 01:03:19 +00:00
just post to discord for now
This commit is contained in:
parent
09eebc719e
commit
490082cc09
1 changed files with 12 additions and 10 deletions
|
@ -116,16 +116,18 @@ def approve(id):
|
|||
post_webhook(f"Post [{post.id}]({url}) approved :white_check_mark: by `{get_session_user()}` :fieri_parrot:")
|
||||
flash("Approved")
|
||||
if current_app.config["DEBUG"] is False:
|
||||
_r = None
|
||||
_d = None
|
||||
if not post.to_reddit:
|
||||
_r = make_post(post)
|
||||
if not post.to_discord:
|
||||
_d = post_discord_webhook(post)
|
||||
if _r and _d:
|
||||
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}")
|
||||
# _r = None
|
||||
# _d = None
|
||||
# if not post.to_reddit:
|
||||
# _r = make_post(post)
|
||||
# if not post.to_discord:
|
||||
# _d = post_discord_webhook(post)
|
||||
# if _r and _d:
|
||||
# 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}")
|
||||
post_discord_webhook(post)
|
||||
post_webhook(f"Post [{post.id}]({url}) submitted :dab_parrot: to Discord.")
|
||||
return redirect(url_for("mod_queue"))
|
||||
else:
|
||||
flash("You can't approve this")
|
||||
|
|
Loading…
Reference in a new issue