gitlab-org--gitlab-foss/app/helpers/tracking_helper.rb
Luke Bennett 0b0f39c573 Add snowplow haml attr helper
Helps build a hash of snowplow tracking data attrs.
Updates import project pane to use new helper.
2019-06-05 16:28:41 +00:00

7 lines
145 B
Ruby

# frozen_string_literal: true
module TrackingHelper
def tracking_attrs(label, event, property)
{} # CE has no tracking features
end
end