blob: bbc312f521555c8bc02516cc32bcc3c1acd6fde6 (
plain)
1
2
3
4
5
6
7
8
|
# TODO(ayufan): The GitLabCiService is deprecated and the type should be removed when the database entries are removed
class GitlabCiService < CiService
# 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
|