Files
mattermost/webapp/dispatcher/app_dispatcher.jsx
Harrison Healey fb6f2a123c PLT-5860 Updated copyright date (#6058)
* PLT-5860 Updated copyright date in about modal

* PLT-5860 Updated copyright notice in JSX files

* PLT-5860 Updated copyright notice in go files

* Fixed misc copyright dates

* Fixed component snapshots
2017-04-12 08:27:57 -04:00

36 lines
1.0 KiB
JavaScript

// 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;