aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/FeaturesStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-04-16 11:48:36 +0200
committerLibravatar GitHub <noreply@github.com>2019-04-16 11:48:36 +0200
commit82195efa887767443bb514edad6d04a6f1a6b62e (patch)
tree8a49a5e84333fab64dee113da0608e45fdb7ddc1 /src/stores/FeaturesStore.js
parentincrease app opens to show share franz overlay (diff)
parentMerge branch 'develop' into chore/streamline-dashboard (diff)
downloadferdium-app-82195efa887767443bb514edad6d04a6f1a6b62e.tar.gz
ferdium-app-82195efa887767443bb514edad6d04a6f1a6b62e.tar.zst
ferdium-app-82195efa887767443bb514edad6d04a6f1a6b62e.zip
Merge pull request #1393 from meetfranz/chore/streamline-dashboard
Feature/User 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 dcda021c1..e7832088b 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -15,6 +15,7 @@ import basicAuth from '../features/basicAuth';
15import workspaces from '../features/workspaces'; 15import workspaces from '../features/workspaces';
16import shareFranz from '../features/shareFranz'; 16import shareFranz from '../features/shareFranz';
17import announcements from '../features/announcements'; 17import announcements from '../features/announcements';
18import settingsWS from '../features/settingsWS';
18 19
19import { DEFAULT_FEATURES_CONFIG } from '../config'; 20import { DEFAULT_FEATURES_CONFIG } from '../config';
20 21
@@ -73,5 +74,6 @@ export default class FeaturesStore extends Store {
73 workspaces(this.stores, this.actions); 74 workspaces(this.stores, this.actions);
74 shareFranz(this.stores, this.actions); 75 shareFranz(this.stores, this.actions);
75 announcements(this.stores, this.actions); 76 announcements(this.stores, this.actions);
77 settingsWS(this.stores, this.actions);
76 } 78 }
77} 79}