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

import Client from 'client/web_client.jsx';

export function track(category, action, label, property, value) {
    Client.track(category, action, label, property, value);
}

export function trackPage() {
    Client.trackPage();
}