summaryrefslogtreecommitdiff
path: root/app/models/hooks/service_hook.rb
blob: 27119d3a95a39fa61c6a2f62aa8587cb0934df66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class ServiceHook < WebHook
  include Presentable
  extend ::Gitlab::Utils::Override

  belongs_to :integration
  validates :integration, presence: true

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

  override :parent
  delegate :parent, to: :integration
end