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

system_hook.rb « hooks « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 777bad1e724166f6a8558f332cecee5373863c14 (plain)
1
2
3
4
5
class SystemHook < WebHook
  def async_execute(data, hook_name)
    Sidekiq::Client.enqueue(SystemHookWorker, id, data, hook_name)
  end
end