summaryrefslogtreecommitdiffstats
path: root/webapp/components/integrations/components/add_oauth_app/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/integrations/components/add_oauth_app/index.js')
-rw-r--r--webapp/components/integrations/components/add_oauth_app/index.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/webapp/components/integrations/components/add_oauth_app/index.js b/webapp/components/integrations/components/add_oauth_app/index.js
deleted file mode 100644
index be3446c45..000000000
--- a/webapp/components/integrations/components/add_oauth_app/index.js
+++ /dev/null
@@ -1,25 +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 {addOAuthApp} from 'mattermost-redux/actions/integrations';
-
-import AddOAuthApp from './add_oauth_app.jsx';
-
-function mapStateToProps(state, ownProps) {
- return {
- ...ownProps,
- addOAuthAppRequest: state.requests.integrations.addOAuthApp
- };
-}
-
-function mapDispatchToProps(dispatch) {
- return {
- actions: bindActionCreators({
- addOAuthApp
- }, dispatch)
- };
-}
-
-export default connect(mapStateToProps, mapDispatchToProps)(AddOAuthApp);