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

import {connect} from 'react-redux';
import {bindActionCreators} from 'redux';
import {regenCommandToken, deleteCommand} from 'mattermost-redux/actions/integrations';

import InstalledCommands from './installed_commands.jsx';

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

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

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