mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
6ebc460b66
Admin user management page
16 lines
313 B
JavaScript
16 lines
313 B
JavaScript
export const RENDER_FLASH = 'RENDER_FLASH';
|
|
export const HIDE_FLASH = 'HIDE_FLASH';
|
|
|
|
export const renderFlash = (alertType, message, undoAction) => {
|
|
return {
|
|
type: RENDER_FLASH,
|
|
payload: {
|
|
alertType,
|
|
message,
|
|
undoAction,
|
|
},
|
|
};
|
|
};
|
|
|
|
export const hideFlash = { type: HIDE_FLASH };
|