Deprecate GitLabCiService making it to always be inactive

This commit is contained in:
Kamil Trzcinski 2015-12-22 00:20:54 +01:00
parent f898e52a00
commit a495b9bc18
1 changed files with 6 additions and 1 deletions

View File

@ -18,6 +18,11 @@
# note_events :boolean default(TRUE), not null
#
# TODO(ayufan): The GitLabCiService is deprecated and the type should be removed when the database entries are removed
class GitlabCiService < CiService
# this is no longer used
# 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
end