* 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
16 lines
328 B
TypeScript
16 lines
328 B
TypeScript
import { ReduxActionTypes } from "@appsmith/constants/ReduxActionConstants";
|
|
|
|
export const historyPush = (url: string) => ({
|
|
type: ReduxActionTypes.HISTORY_PUSH,
|
|
payload: {
|
|
url,
|
|
},
|
|
});
|
|
|
|
export const windowRedirect = (url: string) => ({
|
|
type: ReduxActionTypes.REDIRECT_WINDOW_LOCATION,
|
|
payload: {
|
|
url,
|
|
},
|
|
});
|