fleet/frontend/redux/nodes/notifications/actions.js
Mike Stone 6ebc460b66 Admin user management (#233)
Admin user management page
2016-10-03 13:54:22 -04:00

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