debian-mirror-gitlab/app/models/project_services/gitlab_ci_service.rb

9 lines
353 B
Ruby
Raw Normal View History

2015-12-23 02:04:40 +05:30
# TODO(ayufan): The GitLabCiService is deprecated and the type should be removed when the database entries are removed
2014-09-02 18:07:02 +05:30
class GitlabCiService < CiService
2015-12-23 02:04:40 +05:30
# 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
2014-09-02 18:07:02 +05:30
end
end