summaryrefslogtreecommitdiffstats
path: root/webapp/actions/oauth_actions.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/actions/oauth_actions.jsx')
-rw-r--r--webapp/actions/oauth_actions.jsx21
1 files changed, 0 insertions, 21 deletions
diff --git a/webapp/actions/oauth_actions.jsx b/webapp/actions/oauth_actions.jsx
deleted file mode 100644
index 54823a324..000000000
--- a/webapp/actions/oauth_actions.jsx
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import store from 'stores/redux_store.jsx';
-const dispatch = store.dispatch;
-const getState = store.getState;
-
-import * as IntegrationActions from 'mattermost-redux/actions/integrations';
-
-export function deleteOAuthApp(id, success, error) {
- IntegrationActions.deleteOAuthApp(id)(dispatch, getState).then(
- (data) => {
- if (data && success) {
- success(data);
- } else if (data == null && error) {
- const serverError = getState().requests.integrations.deleteOAuthApp.error;
- error({id: serverError.server_error_id, ...serverError});
- }
- }
- );
-}