debian-mirror-gitlab/app/models/hooks/service_hook.rb
2019-02-15 15:39:39 +05:30

13 lines
318 B
Ruby

# frozen_string_literal: true
class ServiceHook < WebHook
belongs_to :service
validates :service, presence: true
# rubocop: disable CodeReuse/ServiceClass
def execute(data, hook_name = 'service_hook')
WebHookService.new(self, data, hook_name).execute
end
# rubocop: enable CodeReuse/ServiceClass
end