aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/FeaturesStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-04-09 01:20:35 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-04-09 01:20:35 +0200
commit25fc276d5e3f754f915500e91229b8607febc478 (patch)
tree1875b74611d2cc7be8c6b040dae55ede89e51356 /src/stores/FeaturesStore.js
parentupdate strings (diff)
downloadferdium-app-25fc276d5e3f754f915500e91229b8607febc478.tar.gz
ferdium-app-25fc276d5e3f754f915500e91229b8607febc478.tar.zst
ferdium-app-25fc276d5e3f754f915500e91229b8607febc478.zip
Add settings websocket
Diffstat (limited to 'src/stores/FeaturesStore.js')
-rw-r--r--src/stores/FeaturesStore.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/FeaturesStore.js b/src/stores/FeaturesStore.js
index d2842083c..e60d79075 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -8,6 +8,7 @@ import spellchecker from '../features/spellchecker';
8import serviceProxy from '../features/serviceProxy'; 8import serviceProxy from '../features/serviceProxy';
9import basicAuth from '../features/basicAuth'; 9import basicAuth from '../features/basicAuth';
10import shareFranz from '../features/shareFranz'; 10import shareFranz from '../features/shareFranz';
11import settingsWS from '../features/settingsWS';
11 12
12import { DEFAULT_FEATURES_CONFIG } from '../config'; 13import { DEFAULT_FEATURES_CONFIG } from '../config';
13 14
@@ -58,5 +59,6 @@ export default class FeaturesStore extends Store {
58 serviceProxy(this.stores, this.actions); 59 serviceProxy(this.stores, this.actions);
59 basicAuth(this.stores, this.actions); 60 basicAuth(this.stores, this.actions);
60 shareFranz(this.stores, this.actions); 61 shareFranz(this.stores, this.actions);
62 settingsWS(this.stores, this.actions);
61 } 63 }
62} 64}