summaryrefslogtreecommitdiff
path: root/app/models/service_hook.rb
blob: 4cd2b272eece51050c3392b321b1f32900bd50b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# == 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")
#  service_id :integer
#

class ServiceHook < WebHook
  belongs_to :service
end