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