summaryrefslogtreecommitdiffstats
path: root/webapp/components/integrations/components/edit_outgoing_webhook/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/integrations/components/edit_outgoing_webhook/index.js')
-rw-r--r--webapp/components/integrations/components/edit_outgoing_webhook/index.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/webapp/components/integrations/components/edit_outgoing_webhook/index.js b/webapp/components/integrations/components/edit_outgoing_webhook/index.js
deleted file mode 100644
index a526ac76c..000000000
--- a/webapp/components/integrations/components/edit_outgoing_webhook/index.js
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {connect} from 'react-redux';
-import {bindActionCreators} from 'redux';
-import {updateOutgoingHook, getOutgoingHook} from 'mattermost-redux/actions/integrations';
-
-import EditOutgoingWebhook from './edit_outgoing_webhook.jsx';
-
-function mapStateToProps(state, ownProps) {
- const hookId = ownProps.location.query.id;
-
- return {
- ...ownProps,
- hookId,
- hook: state.entities.integrations.outgoingHooks[hookId],
- updateOutgoingHookRequest: state.requests.integrations.createOutgoingHook
- };
-}
-
-function mapDispatchToProps(dispatch) {
- return {
- actions: bindActionCreators({
- updateOutgoingHook,
- getOutgoingHook
- }, dispatch)
- };
-}
-
-export default connect(mapStateToProps, mapDispatchToProps)(EditOutgoingWebhook);