gitlabhq/app/models/service.rb

28 lines
616 B
Ruby
Raw Normal View History

2012-11-19 19:14:05 +01:00
# == Schema Information
#
# Table name: services
#
2012-11-20 13:19:55 +01:00
# id :integer not null, primary key
# type :string(255)
# title :string(255)
# token :string(255)
# project_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
# active :boolean default(FALSE), not null
# project_url :string(255)
2012-11-19 19:14:05 +01:00
#
class Service < ActiveRecord::Base
2012-11-19 20:34:05 +01:00
attr_accessible :title, :token, :type, :active
2012-11-19 19:14:05 +01:00
belongs_to :project
has_one :service_hook
validates :project_id, presence: true
2013-01-03 08:52:14 +01:00
def activated?
active
end
2012-11-19 19:14:05 +01:00
end