summaryrefslogtreecommitdiffstats
path: root/webapp/components/integrations/components/add_command/index.js
blob: 9ac7db220b62a99dddae29be77af35544d2159ea (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 {addCommand} from 'mattermost-redux/actions/integrations';

import AddCommand from './add_command.jsx';

function mapStateToProps(state, ownProps) {
    return {
        ...ownProps,
        addCommandRequest: state.requests.integrations.addCommand
    };
}

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

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