summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notes/utils.js
blob: 7966a884eab29207ad31c2a25d3c7739cdac2017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* eslint-disable @gitlab/require-i18n-strings */

/**
 * Tracks snowplow event when User toggles timeline view
 * @param {Boolean} enabled that will be send as a property for the event
 */
export const trackToggleTimelineView = (enabled) => ({
  category: 'Incident Management',
  action: 'toggle_incident_comments_into_timeline_view',
  label: 'Status',
  property: enabled,
});