mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
23 lines
360 B
JavaScript
23 lines
360 B
JavaScript
'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;
|
|
}
|
|
|
|
onFlushCoa() {
|
|
this.coa = {};
|
|
}
|
|
}
|
|
|
|
export default alt.createStore(CoaStore, 'CoaStore');
|