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.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/FeaturesStore.js b/src/stores/FeaturesStore.js
index 1ac05d3b9..27334c9a2 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -17,6 +17,7 @@ import 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'; 19import serviceLimit from '../features/serviceLimit';
20import communityRecipes from '../features/communityRecipes';
20 21
21import { DEFAULT_FEATURES_CONFIG } from '../config'; 22import { DEFAULT_FEATURES_CONFIG } from '../config';
22 23
@@ -77,5 +78,6 @@ export default class FeaturesStore extends Store {
77 announcements(this.stores, this.actions); 78 announcements(this.stores, this.actions);
78 settingsWS(this.stores, this.actions); 79 settingsWS(this.stores, this.actions);
79 serviceLimit(this.stores, this.actions); 80 serviceLimit(this.stores, this.actions);
81 communityRecipes(this.stores, this.actions);
80 } 82 }
81} 83}