mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 01:25:17 +01:00
20 lines
395 B
JavaScript
20 lines
395 B
JavaScript
'use strict';
|
|
|
|
import { altThirdParty } from '../alt';
|
|
|
|
|
|
class EventActions {
|
|
constructor() {
|
|
this.generateActions(
|
|
'applicationWillBoot',
|
|
'applicationDidBoot',
|
|
'profileDidLoad',
|
|
//'userDidLogin',
|
|
//'userDidLogout',
|
|
'routeDidChange'
|
|
);
|
|
}
|
|
}
|
|
|
|
export default altThirdParty.createActions(EventActions);
|