PromucFlow_constructor/app/client/src/actions/settingsAction.ts
Ankita Kinger 65ffb56f34
chore: Improve the UI for restart banner on admin settings page (#12580)
* 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
2022-04-11 14:12:06 +05:30

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,
});