blob: a122c274763ad0ce41118de0499d11595379802f (
plain)
1
2
3
4
5
6
7
8
9
|
class SystemHookWorker
include Sidekiq::Worker
sidekiq_options queue: :system_hook
def perform(hook_id, data, hook_name)
SystemHook.find(hook_id).execute(data, hook_name)
end
end
|