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

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

module BizibleHelper
  def bizible_enabled?
    Feature.enabled?(:ecomm_instrumentation, type: :ops) &&
      Gitlab.config.extra.has_key?('bizible') &&
      Gitlab.config.extra.bizible.present? &&
      Gitlab.config.extra.bizible == true
  end
end