summaryrefslogtreecommitdiff
path: root/app/workers/system_hook_push_worker.rb
blob: fc6237f359ac93778f1e8f65980157fbc88f2296 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class SystemHookPushWorker
  include ApplicationWorker

  feature_category :source_code_management

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