Welcome to mirror list, hosted at ThFree Co, Russian Federation.

system_hook.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5cdf046644f184b0536f45f3c3832c84689dc977 (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         not null
#  updated_at :datetime         not null
#  type       :string(255)      default("ProjectHook")
#  service_id :integer
#

class SystemHook < WebHook
end