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

service_hook.rb « hooks « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40e43c27f91384ac4cca3ec19893f5c564a14971 (plain)
1
2
3
4
5
6
7
class ServiceHook < WebHook
  belongs_to :service

  def execute(data)
    WebHookService.new(self, data, 'service_hook').execute
  end
end