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

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

module ProductAnalyticsHelper
  def product_analytics_tracker_url
    ProductAnalytics::Tracker::URL
  end

  def product_analytics_tracker_collector_url
    ProductAnalytics::Tracker::COLLECTOR_URL
  end
end