Only show deprecation warning if the webhook is active

This commit is contained in:
Robin Ward
2019-06-10 16:22:51 -04:00
parent ace6ce0462
commit ecebff5060
2 changed files with 5 additions and 5 deletions

View File

@@ -97,7 +97,7 @@ end
DiscourseEvent.on(:reviewable_transitioned_to) do |status, reviewable|
WebHook.enqueue_object_hooks(:reviewable, reviewable, :reviewable_transitioned_to, reviewable.serializer)
# TODO: Backwards compatibility for Queued Post webhooks. Remve in favor of Reviewable API
# TODO: Backwards compatibility for Queued Post webhooks. Remove in favor of Reviewable API
if reviewable.is_a?(ReviewableQueuedPost)
if reviewable.approved?
WebHook.enqueue_object_hooks(:queued_post, reviewable, :approved_post, QueuedPostSerializer)