debian-mirror-gitlab/app/models/hooks/service_hook.rb

13 lines
295 B
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
class ServiceHook < WebHook
belongs_to :service
2017-09-10 17:25:29 +05:30
validates :service, presence: true
2015-09-11 14:41:01 +05:30
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ServiceClass
2019-01-03 12:48:30 +05:30
def execute(data)
WebHookService.new(self, data, 'service_hook').execute
2015-09-11 14:41:01 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ServiceClass
2014-09-02 18:07:02 +05:30
end