gitlabhq/app/models/project_hook.rb

17 lines
347 B
Ruby
Raw Normal View History

2012-09-27 08:20:36 +02:00
class ProjectHook < WebHook
belongs_to :project
end
2012-09-27 07:36:31 +02:00
# == 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")
#
2012-10-09 10:14:17 +02:00