mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 09:23:13 +01:00
19 lines
368 B
JavaScript
19 lines
368 B
JavaScript
'use strict';
|
|
|
|
import { altThirdParty } from '../alt';
|
|
|
|
|
|
class EventActions {
|
|
constructor() {
|
|
this.generateActions(
|
|
'applicationWillBoot',
|
|
'applicationDidBoot',
|
|
'userDidAuthenticate',
|
|
'userDidLogout',
|
|
'routeDidChange'
|
|
);
|
|
}
|
|
}
|
|
|
|
export default altThirdParty.createActions(EventActions);
|