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 adbd401b4..ab5d762c7 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -13,12 +13,14 @@ import spellchecker from '../features/spellchecker';
13import serviceProxy from '../features/serviceProxy'; 13import serviceProxy from '../features/serviceProxy';
14import basicAuth from '../features/basicAuth'; 14import basicAuth from '../features/basicAuth';
15import workspaces from '../features/workspaces'; 15import workspaces from '../features/workspaces';
16import quickSwitch from '../features/quickSwitch';
16import shareFranz from '../features/shareFranz'; 17import shareFranz from '../features/shareFranz';
17import announcements from '../features/announcements'; 18import announcements from '../features/announcements';
18import settingsWS from '../features/settingsWS'; 19import settingsWS from '../features/settingsWS';
19import serviceLimit from '../features/serviceLimit'; 20import serviceLimit from '../features/serviceLimit';
20import communityRecipes from '../features/communityRecipes'; 21import communityRecipes from '../features/communityRecipes';
21import todos from '../features/todos'; 22import todos from '../features/todos';
23import accentColor from '../features/accentColor';
22import planSelection from '../features/planSelection'; 24import planSelection from '../features/planSelection';
23import trialStatusBar from '../features/trialStatusBar'; 25import trialStatusBar from '../features/trialStatusBar';
24 26
@@ -78,12 +80,14 @@ export default class FeaturesStore extends Store {
78 serviceProxy(this.stores, this.actions); 80 serviceProxy(this.stores, this.actions);
79 basicAuth(this.stores, this.actions); 81 basicAuth(this.stores, this.actions);
80 workspaces(this.stores, this.actions); 82 workspaces(this.stores, this.actions);
83 quickSwitch(this.stores, this.actions);
81 shareFranz(this.stores, this.actions); 84 shareFranz(this.stores, this.actions);
82 announcements(this.stores, this.actions); 85 announcements(this.stores, this.actions);
83 settingsWS(this.stores, this.actions); 86 settingsWS(this.stores, this.actions);
84 serviceLimit(this.stores, this.actions); 87 serviceLimit(this.stores, this.actions);
85 communityRecipes(this.stores, this.actions); 88 communityRecipes(this.stores, this.actions);
86 todos(this.stores, this.actions); 89 todos(this.stores, this.actions);
90 accentColor(this.stores, this.actions);
87 planSelection(this.stores, this.actions); 91 planSelection(this.stores, this.actions);
88 trialStatusBar(this.stores, this.actions); 92 trialStatusBar(this.stores, this.actions);
89 } 93 }