Welcome to mirror list, hosted at ThFree Co, Russian Federation.

system_hook_push_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15e369ebcfb1b5f45541fff1acead3a07d7b385d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class SystemHookPushWorker
  include ApplicationWorker

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