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 e7832088b..27334c9a2 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -16,6 +16,8 @@ import 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'; 18import settingsWS from '../features/settingsWS';
19import serviceLimit from '../features/serviceLimit';
20import communityRecipes from '../features/communityRecipes';
19 21
20import { DEFAULT_FEATURES_CONFIG } from '../config'; 22import { DEFAULT_FEATURES_CONFIG } from '../config';
21 23
@@ -75,5 +77,7 @@ export default class FeaturesStore extends Store {
75 shareFranz(this.stores, this.actions); 77 shareFranz(this.stores, this.actions);
76 announcements(this.stores, this.actions); 78 announcements(this.stores, this.actions);
77 settingsWS(this.stores, this.actions); 79 settingsWS(this.stores, this.actions);
80 serviceLimit(this.stores, this.actions);
81 communityRecipes(this.stores, this.actions);
78 } 82 }
79} 83}