mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
19 lines
404 B
JavaScript
19 lines
404 B
JavaScript
'use strict';
|
|
|
|
import { alt } from '../alt';
|
|
import ApplicationActions from '../actions/application_actions';
|
|
|
|
|
|
class ApplicationStore {
|
|
constructor() {
|
|
this.applications = {};
|
|
this.bindActions(ApplicationActions);
|
|
}
|
|
|
|
onUpdateApplications(applications) {
|
|
this.applications = applications;
|
|
}
|
|
}
|
|
|
|
export default alt.createStore(ApplicationStore, 'ApplicationStore');
|