Files
old-wiaas-legacy/client-wiaas/src/actions/notification/notificationActions.js
2018-06-11 11:09:35 +02:00

5 lines
294 B
JavaScript

import {UPDATE_MESSAGES, DESTROY_MESSAGE} from '../../constants/notificationConstants';
export const destroyMessage = () => ({type: DESTROY_MESSAGE, messages: []});
export const updateMessages = (json, messageObj) => ({type: UPDATE_MESSAGES, updateMessages: {messageJson: json, messageObj}});