PromucFlow_constructor/app/client/src/actions/settingsAction.ts

11 lines
308 B
TypeScript
Raw Normal View History

import { ReduxActionTypes } from "constants/ReduxActionConstants";
export const saveSettings = (settings: Record<string, string>) => ({
type: ReduxActionTypes.SAVE_ADMIN_SETTINGS,
payload: settings,
});
export const retryServerRestart = () => ({
type: ReduxActionTypes.RETRY_RESTART_SERVER_POLL,
});