1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-30 13:41:57 +02:00
onion/js/actions/global_notification_actions.js
2015-06-09 12:08:14 +02:00

17 lines
319 B
JavaScript

'use strict';
import alt from '../alt';
class GlobalNotificationActions {
constructor() {
this.generateActions(
'appendGlobalNotification',
'shiftGlobalNotification',
'emulateEmptyStore'
);
}
}
export default alt.createActions(GlobalNotificationActions);