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

class ServiceHook < WebHook
  include WebHooks::Unstoppable
  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