mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* 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
36 lines
1.0 KiB
JavaScript
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;
|