Welcome to mirror list, hosted at ThFree Co, Russian Federation.

onboarding_experiment_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad49d333d7a296679d56e22a9bbec742e3858b51 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module OnboardingExperimentHelper
  def allow_access_to_onboarding?
    ::Gitlab.com? && Feature.enabled?(:user_onboarding)
  end
end