debian-mirror-gitlab/lib/product_analytics/tracker.rb
2021-10-27 15:23:28 +05:30

11 lines
315 B
Ruby

# frozen_string_literal: true
module ProductAnalytics
class Tracker
# The file is located in the /public directory
URL = Gitlab.config.gitlab.url + '/-/sp.js'
# The collector URL minus protocol and /i
COLLECTOR_URL = Gitlab.config.gitlab.url.sub(%r{\Ahttps?\://}, '') + '/-/collector'
end
end