gitlab-org--gitlab-foss/app/models/service.rb

28 lines
616 B
Ruby
Raw Normal View History

2012-11-19 18:14:05 +00:00
# == Schema Information
#
# Table name: services
#
2012-11-20 12:19:55 +00: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 18:14:05 +00:00
#
class Service < ActiveRecord::Base
2012-11-19 19:34:05 +00:00
attr_accessible :title, :token, :type, :active
2012-11-19 18:14:05 +00:00
belongs_to :project
has_one :service_hook
validates :project_id, presence: true
2013-01-03 07:52:14 +00:00
def activated?
active
end
2012-11-19 18:14:05 +00:00
end