blob: 1beb88548c514fdba209a3028e733740d51d4154 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# frozen_string_literal: true
module TrackingHelper
def tracking_attrs(label, action, property)
return {} unless 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
private
def tracking_enabled?
Rails.env.production? &&
::Gitlab::Tracking.enabled?
end
end
|