83b1fd120a
OnboardingExperimentHelpers take care of determining if the current_user should or should not see the new onboarding feature.
7 lines
165 B
Ruby
7 lines
165 B
Ruby
# frozen_string_literal: true
|
|
|
|
module OnboardingExperimentHelper
|
|
def allow_access_to_onboarding?
|
|
::Gitlab.com? && Feature.enabled?(:user_onboarding)
|
|
end
|
|
end
|