* improved the UI for restart banner on admin settings page * implemented suggestions from PR * retrying to restart server on button click * updated colors getting used * implemented PR suggestions * fixed cypress test failure
11 lines
308 B
TypeScript
11 lines
308 B
TypeScript
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,
|
|
});
|