hyper/lib/actions/notifications.js

21 lines
358 B
JavaScript
Raw Permalink Normal View History

import {
NOTIFICATION_MESSAGE,
NOTIFICATION_DISMISS
} from '../constants/notifications';
2016-07-13 12:44:24 -08:00
export function dismissNotification(id) {
2016-07-13 12:44:24 -08:00
return {
type: NOTIFICATION_DISMISS,
id
};
}
export function addNotificationMessage(text, url = null, dismissable = true) {
return {
type: NOTIFICATION_MESSAGE,
text,
url,
dismissable
};
}