1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 16:48:04 +02:00
onion/js/actions/global_notification_actions.js

19 lines
455 B
JavaScript
Raw Permalink Normal View History

2015-06-08 18:14:25 +02:00
'use strict';
import { alt } from '../alt';
2015-06-08 18:14:25 +02:00
class GlobalNotificationActions {
constructor() {
this.generateActions(
'appendGlobalNotification',
'showNextGlobalNotification',
'shiftGlobalNotification',
'cooldownGlobalNotifications',
'pauseGlobalNotifications',
'resumeGlobalNotifications'
2015-06-08 18:14:25 +02:00
);
}
}
export default alt.createActions(GlobalNotificationActions);