summaryrefslogtreecommitdiffstats
path: root/webapp/components/integrations/components/add_incoming_webhook/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/integrations/components/add_incoming_webhook/index.js')
-rw-r--r--webapp/components/integrations/components/add_incoming_webhook/index.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/webapp/components/integrations/components/add_incoming_webhook/index.js b/webapp/components/integrations/components/add_incoming_webhook/index.js
deleted file mode 100644
index ed2b53ba8..000000000
--- a/webapp/components/integrations/components/add_incoming_webhook/index.js
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
- import {connect} from 'react-redux';
- import {bindActionCreators} from 'redux';
- import {createIncomingHook} from 'mattermost-redux/actions/integrations';
-
- import AddIncomingWebhook from './add_incoming_webhook.jsx';
-
- function mapStateToProps(state, ownProps) {
- return {
- ...ownProps,
- createIncomingHookRequest: state.requests.integrations.createIncomingHook
- };
- }
-
- function mapDispatchToProps(dispatch) {
- return {
- actions: bindActionCreators({
- createIncomingHook
- }, dispatch)
- };
- }
-
- export default connect(mapStateToProps, mapDispatchToProps)(AddIncomingWebhook); \ No newline at end of file