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: eef24052a064fa5248f56317b9df8b5b00b7401b (plain)
1
2
3
4
5
6
7
class ServiceHook < WebHook
  belongs_to :service

  def execute(data)
    super(data, 'service_hook')
  end
end