* Implemented code splitting of some files for SAML integration * Implemented code splitting of some more files for SAML integration * updated redirect url component * fixed an import statement * fixed a unit test * updated restart banner tooltip logic * updated an import statement
11 lines
318 B
TypeScript
11 lines
318 B
TypeScript
import { ReduxActionTypes } from "@appsmith/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,
|
|
});
|