29 lines
832 B
TypeScript
29 lines
832 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import AppsTypes from '@mm-redux/action_types/apps';
|
|
import {refreshAppBindings} from '@mm-redux/actions/apps';
|
|
import {ActionResult, DispatchFunc, GetStateFunc} from '@mm-redux/types/actions';
|
|
import {appsEnabled} from '@utils/apps';
|
|
|
|
export function handleRefreshAppsBindings() {
|
|
return (dispatch: DispatchFunc, getState: GetStateFunc): ActionResult => {
|
|
if (appsEnabled(getState())) {
|
|
dispatch(refreshAppBindings());
|
|
}
|
|
|
|
return {data: true};
|
|
};
|
|
}
|
|
|
|
export function handleAppsPluginEnabled() {
|
|
return {
|
|
type: AppsTypes.APPS_PLUGIN_ENABLED,
|
|
};
|
|
}
|
|
|
|
export function handleAppsPluginDisabled() {
|
|
return {
|
|
type: AppsTypes.APPS_PLUGIN_DISABLED,
|
|
};
|
|
}
|