1
0
mirror of https://github.com/ascribe/onion.git synced 2024-11-15 09:35:10 +01:00
onion/js/stores/coa_store.js

23 lines
383 B
JavaScript
Raw Normal View History

2015-06-25 14:39:39 +02:00
'use strict';
import alt from '../alt';
import CoaActions from '../actions/coa_actions';
class CoaStore {
constructor() {
this.coa = {};
this.bindActions(CoaActions);
}
onUpdateCoa(coa) {
this.coa = coa;
}
2015-07-22 00:30:51 +02:00
onErrorCoa(err) {
this.coa = {};
//this.coa = err
}
2015-06-25 14:39:39 +02:00
}
export default alt.createStore(CoaStore, 'CoaStore');