2016-09-13 02:20:55 +09:00
|
|
|
export const NOTIFICATION_DISMISS = 'NOTIFICATION_DISMISS';
|
2016-09-22 05:07:18 +09:00
|
|
|
export const NOTIFICATION_CLEAR = 'NOTIFICATION_CLEAR';
|
2016-09-13 02:20:55 +09:00
|
|
|
|
|
|
|
export function dismissNotification(notification) {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATION_DISMISS,
|
|
|
|
notification: notification
|
|
|
|
};
|
|
|
|
};
|
2016-09-22 05:07:18 +09:00
|
|
|
|
|
|
|
export function clearNotifications() {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATION_CLEAR
|
|
|
|
};
|
|
|
|
};
|