gitlabhq/app/models/project_hook.rb

16 lines
346 B
Ruby
Raw Normal View History

2012-09-26 23:20:36 -07:00
class ProjectHook < WebHook
belongs_to :project
end
2012-09-26 22:36:31 -07: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")
#