summaryrefslogtreecommitdiffstats
path: root/webapp/dispatcher/app_dispatcher.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:04:13 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:58 -0700
commitd8bd57901e33a7057e26e782e295099ffcc0da89 (patch)
treee12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/dispatcher/app_dispatcher.jsx
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
Diffstat (limited to 'webapp/dispatcher/app_dispatcher.jsx')
-rw-r--r--webapp/dispatcher/app_dispatcher.jsx35
1 files changed, 0 insertions, 35 deletions
diff --git a/webapp/dispatcher/app_dispatcher.jsx b/webapp/dispatcher/app_dispatcher.jsx
deleted file mode 100644
index c74a16220..000000000
--- a/webapp/dispatcher/app_dispatcher.jsx
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import * as Flux from 'flux';
-
-import Constants from 'utils/constants.jsx';
-const PayloadSources = Constants.PayloadSources;
-
-const AppDispatcher = Object.assign(new Flux.Dispatcher(), {
- handleServerAction: function performServerAction(action) {
- if (!action.type) {
- console.warn('handleServerAction called with undefined action type'); // eslint-disable-line no-console
- }
-
- var payload = {
- source: PayloadSources.SERVER_ACTION,
- action
- };
- this.dispatch(payload);
- },
-
- handleViewAction: function performViewAction(action) {
- if (!action.type) {
- console.warn('handleViewAction called with undefined action type'); // eslint-disable-line no-console
- }
-
- var payload = {
- source: PayloadSources.VIEW_ACTION,
- action
- };
- this.dispatch(payload);
- }
-});
-
-export default AppDispatcher;