1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 08:37:59 +02:00
onion/js/stores/license_store.js

19 lines
360 B
JavaScript
Raw Normal View History

2015-06-30 10:42:58 +02:00
'use strict';
import { alt } from '../alt';
2015-06-30 10:42:58 +02:00
import LicenseActions from '../actions/license_actions';
class LicenseStore {
constructor() {
this.licenses = {};
this.bindActions(LicenseActions);
}
onUpdateLicenses(licenses) {
this.licenses = licenses;
}
}
export default alt.createStore(LicenseStore, 'LicenseStore');