summaryrefslogtreecommitdiffstats
path: root/webapp/actions/diagnostics_actions.jsx
blob: b093d8e8b90c9ddf1043eadb5fbbda212a2809d0 (plain)
1
2
3
4
5
6
7
8
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import Client from 'client/web_client.jsx';

export function trackEvent(category, event, properties) {
    Client.trackEvent(category, event, properties);
}