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

tracking_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ef57a57d621e0529885924b356a4b48d3c0bef7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module TrackingHelper
  def tracking_attrs(label, action, property)
    return {} unless ::Gitlab::Tracking.enabled?

    {
      data: {
        track_label: label,
        track_action: action,
        track_property: property
      }
    }
  end

  def tracking_attrs_data(label, action, property)
    tracking_attrs(label, action, property).fetch(:data, {})
  end
end