* 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
15 lines
366 B
TypeScript
15 lines
366 B
TypeScript
import { ReduxActionTypes } from "@appsmith/constants/ReduxActionConstants";
|
|
|
|
export const setHelpDefaultRefinement = (payload: string) => {
|
|
return {
|
|
type: ReduxActionTypes.SET_DEFAULT_REFINEMENT,
|
|
payload,
|
|
};
|
|
};
|
|
export const setHelpModalVisibility = (payload: boolean) => {
|
|
return {
|
|
type: ReduxActionTypes.SET_HELP_MODAL_OPEN,
|
|
payload,
|
|
};
|
|
};
|