discourse/app/models/concerns/has_destroyed_web_hook.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

25 lines
499 B
Ruby

# frozen_string_literal: true
module HasDestroyedWebHook
extend ActiveSupport::Concern
included do
around_destroy :enqueue_destroyed_web_hook
end
def enqueue_destroyed_web_hook
type = self.class.name.underscore.to_sym
if WebHook.active_web_hooks(type).exists?
payload = WebHook.generate_payload(type, self)
yield
WebHook.enqueue_hooks(type, "#{type}_destroyed".to_sym,
id: id,
payload: payload
)
else
yield
end
end
end