gitlab-org--gitlab-foss/app/experiments/in_product_guidance_environ...

14 lines
244 B
Ruby

# frozen_string_literal: true
class InProductGuidanceEnvironmentsWebideExperiment < ApplicationExperiment
control { false }
exclude :has_environments?
private
def has_environments?
!context.project.environments.empty?
end
end