gitlab-org--gitlab-foss/app/models/hooks/service_hook.rb

8 lines
113 B
Ruby
Raw Normal View History

2012-11-19 18:14:05 +00:00
class ServiceHook < WebHook
belongs_to :service
def execute(data)
super(data, 'service_hook')
end
2012-11-19 18:14:05 +00:00
end