gitlabhq/app/models/service_hook.rb
2012-11-20 11:33:49 +02:00

16 lines
350 B
Ruby

# == 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")
#
class ServiceHook < WebHook
belongs_to :service
end