summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/audits/index.js
blob: a48e335382a6587a425eed8698a351a64c750bed (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
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import {connect} from 'react-redux';
import {bindActionCreators} from 'redux';
import {getAudits} from 'mattermost-redux/actions/admin';

import * as Selectors from 'mattermost-redux/selectors/entities/admin';

import Audits from './audits.jsx';

function mapStateToProps(state, ownProps) {
    return {
        ...ownProps,
        audits: Object.values(Selectors.getAudits(state))
    };
}

function mapDispatchToProps(dispatch) {
    return {
        actions: bindActionCreators({
            getAudits
        }, dispatch)
    };
}

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