2021-10-18 07:47:55 +00:00
|
|
|
import { ReduxActionTypes } from "constants/ReduxActionConstants";
|
|
|
|
|
|
|
|
|
|
export const saveSettings = (settings: Record<string, string>) => ({
|
|
|
|
|
type: ReduxActionTypes.SAVE_ADMIN_SETTINGS,
|
|
|
|
|
payload: settings,
|
|
|
|
|
});
|
2022-04-11 08:42:06 +00:00
|
|
|
|
|
|
|
|
export const retryServerRestart = () => ({
|
|
|
|
|
type: ReduxActionTypes.RETRY_RESTART_SERVER_POLL,
|
|
|
|
|
});
|