debian-mirror-gitlab/lib/gitlab/gitpod.rb

27 lines
632 B
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# frozen_string_literal: true
module Gitlab
class Gitpod
class << self
def feature_available?
# The gitpod_bundle feature could be conditionally applied, so check if `!off?`
2021-01-03 14:25:43 +05:30
!feature.off? || feature_enabled?
2020-11-24 15:15:51 +05:30
end
def feature_enabled?(actor = nil)
2021-01-03 14:25:43 +05:30
Feature.enabled?(:gitpod, actor, default_enabled: true)
2020-11-24 15:15:51 +05:30
end
def feature_and_settings_enabled?(actor = nil)
feature_enabled?(actor) && Gitlab::CurrentSettings.gitpod_enabled
end
private
def feature
Feature.get(:gitpod) # rubocop:disable Gitlab/AvoidFeatureGet
end
end
end
end