gitlabhq/app/models/project_hook.rb
2012-09-27 02:05:53 -07:00

16 lines
346 B
Ruby

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