1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2025-02-21 18:27:39 +01:00
mastodon/app/workers/trigger_webhook_worker.rb

13 lines
267 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class TriggerWebhookWorker
include Sidekiq::Worker
def perform(event, class_name, id)
object = class_name.constantize.find(id)
WebhookService.new.call(event, object)
rescue ActiveRecord::RecordNotFound
true
end
end