aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/FeaturesStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/FeaturesStore.js')
-rw-r--r--src/stores/FeaturesStore.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stores/FeaturesStore.js b/src/stores/FeaturesStore.js
index 9740d078f..59abeb218 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -4,6 +4,8 @@ import Store from './lib/Store';
4import CachedRequest from './lib/CachedRequest'; 4import CachedRequest from './lib/CachedRequest';
5 5
6import delayApp from '../features/delayApp'; 6import delayApp from '../features/delayApp';
7import spellchecker from '../features/spellchecker';
8import serviceProxy from '../features/serviceProxy';
7 9
8export default class FeaturesStore extends Store { 10export default class FeaturesStore extends Store {
9 @observable defaultFeaturesRequest = new CachedRequest(this.api.features, 'default'); 11 @observable defaultFeaturesRequest = new CachedRequest(this.api.features, 'default');
@@ -36,5 +38,7 @@ export default class FeaturesStore extends Store {
36 38
37 _enableFeatures() { 39 _enableFeatures() {
38 delayApp(this.stores, this.actions); 40 delayApp(this.stores, this.actions);
41 spellchecker(this.stores, this.actions);
42 serviceProxy(this.stores, this.actions);
39 } 43 }
40} 44}