mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
19 lines
384 B
JavaScript
19 lines
384 B
JavaScript
|
'use strict';
|
||
|
|
||
|
import alt from '../alt';
|
||
|
import WhitelabelActions from '../actions/whitelabel_actions';
|
||
|
|
||
|
|
||
|
class WhitelabelStore {
|
||
|
constructor() {
|
||
|
this.whitelabel = {};
|
||
|
this.bindActions(WhitelabelActions);
|
||
|
}
|
||
|
|
||
|
onUpdateWhitelabel(whitelabel) {
|
||
|
this.whitelabel = whitelabel;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default alt.createStore(WhitelabelStore, 'WhitelabelStore');
|