2012-11-19 14:34:05 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: services
|
|
|
|
#
|
2015-03-04 17:14:00 -05:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# type :string(255)
|
|
|
|
# title :string(255)
|
|
|
|
# project_id :integer
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# active :boolean default(FALSE), not null
|
|
|
|
# properties :text
|
|
|
|
# template :boolean default(FALSE)
|
|
|
|
# push_events :boolean default(TRUE)
|
|
|
|
# issues_events :boolean default(TRUE)
|
|
|
|
# merge_requests_events :boolean default(TRUE)
|
|
|
|
# tag_push_events :boolean default(TRUE)
|
2015-05-03 12:05:38 -04:00
|
|
|
# note_events :boolean default(TRUE), not null
|
2016-01-05 21:30:59 -05:00
|
|
|
# build_events :boolean default(FALSE), not null
|
2012-11-19 14:34:05 -05:00
|
|
|
#
|
|
|
|
|
2015-12-21 18:20:54 -05:00
|
|
|
# TODO(ayufan): The GitLabCiService is deprecated and the type should be removed when the database entries are removed
|
2014-05-28 04:35:43 -04:00
|
|
|
class GitlabCiService < CiService
|
2015-12-21 18:20:54 -05:00
|
|
|
# We override the active accessor to always make GitLabCiService disabled
|
|
|
|
# Otherwise the GitLabCiService can be picked, but should never be since it's deprecated
|
|
|
|
def active
|
|
|
|
false
|
|
|
|
end
|
2012-11-19 14:34:05 -05:00
|
|
|
end
|