summaryrefslogtreecommitdiff
path: root/app/workers/system_hook_push_worker.rb
blob: ceeaaf8d18994a778679cba4a7f774a260fe2a0b (plain)
1
2
3
4
5
6
7
class SystemHookPushWorker
  include ApplicationWorker

  def perform(push_data, hook_id)
    SystemHooksService.new.execute_hooks(push_data, hook_id)
  end
end