summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/system_users/index.js
blob: 8f1c0dc35150371368f020e3e0c16e1d285c2f0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import {connect} from 'react-redux';
import {bindActionCreators} from 'redux';
import {getTeams, getTeamStats} from 'mattermost-redux/actions/teams';
import {getUser} from 'mattermost-redux/actions/users';

import {getTeamsList} from 'mattermost-redux/selectors/entities/teams';

import SystemUsers from './system_users.jsx';

function mapStateToProps(state, ownProps) {
    return {
        teams: getTeamsList(state),
        ...ownProps
    };
}

function mapDispatchToProps(dispatch) {
    return {
        actions: bindActionCreators({
            getTeams,
            getTeamStats,
            getUser
        }, dispatch)
    };
}

export default connect(mapStateToProps, mapDispatchToProps)(SystemUsers);