mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 17:53:44 +08:00
Only show deprecation warning if the webhook is active
This commit is contained in:
parent
ace6ce0462
commit
ecebff5060
|
@ -58,11 +58,11 @@ class WebHook < ActiveRecord::Base
|
|||
end
|
||||
|
||||
def self.enqueue_object_hooks(type, object, event, serializer = nil)
|
||||
if type == :flag
|
||||
Discourse.deprecate("The flags webhook is deprecated. Please use reviewable instead.")
|
||||
end
|
||||
|
||||
if active_web_hooks(type).exists?
|
||||
if type == :flag
|
||||
Discourse.deprecate("The flags webhook is deprecated. Please use reviewable instead.")
|
||||
end
|
||||
|
||||
payload = WebHook.generate_payload(type, object, serializer)
|
||||
|
||||
WebHook.enqueue_hooks(type, event,
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user