BigW Consortium Gitlab

service_hook.rb 373 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
# == Schema Information
#
# Table name: web_hooks
#
#  id         :integer          not null, primary key
#  url        :string(255)
#  project_id :integer
#  created_at :datetime         not null
#  updated_at :datetime         not null
#  type       :string(255)      default("ProjectHook")
Dmitriy Zaporozhets committed
11
#  service_id :integer
12 13 14 15 16
#

class ServiceHook < WebHook
  belongs_to :service
end