12 lines
381 B
JavaScript
12 lines
381 B
JavaScript
/* 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,
|
|
});
|