summaryrefslogtreecommitdiff
path: root/app/models/project_hook.rb
blob: 92f6d1f0c53976607efdaa9ac86d3fa7bc0fc4ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class ProjectHook < WebHook
  belongs_to :project
end

# == 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")
#