summaryrefslogtreecommitdiff
path: root/app/models/system_hook.rb
blob: 2d28f4cd45285d986e645cc348ba8567f2b3aa9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# == Schema Information
#
# Table name: web_hooks
#
#  id         :integer          not null, primary key
#  url        :string(255)
#  project_id :integer
#  created_at :datetime
#  updated_at :datetime
#  type       :string(255)      default("ProjectHook")
#  service_id :integer
#

class SystemHook < WebHook
end