aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/FeaturesStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-09-03 16:33:16 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-09-03 16:33:16 +0200
commita22f18094a64ff9359923c4a91ffbf81769d35f3 (patch)
tree6294b7332fbc29623d13532d48dd52fdd59de677 /src/stores/FeaturesStore.js
parentAdd CTA for pro upgrade (diff)
parentMerge branch 'feature/todos' into develop (diff)
downloadferdium-app-a22f18094a64ff9359923c4a91ffbf81769d35f3.tar.gz
ferdium-app-a22f18094a64ff9359923c4a91ffbf81769d35f3.tar.zst
ferdium-app-a22f18094a64ff9359923c4a91ffbf81769d35f3.zip
Merge branch 'develop' into feature/new-pricing
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 27334c9a2..cf28b6bec 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -18,6 +18,7 @@ import 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'; 20import communityRecipes from '../features/communityRecipes';
21import todos from '../features/todos';
21 22
22import { DEFAULT_FEATURES_CONFIG } from '../config'; 23import { DEFAULT_FEATURES_CONFIG } from '../config';
23 24
@@ -79,5 +80,6 @@ export default class FeaturesStore extends Store {
79 settingsWS(this.stores, this.actions); 80 settingsWS(this.stores, this.actions);
80 serviceLimit(this.stores, this.actions); 81 serviceLimit(this.stores, this.actions);
81 communityRecipes(this.stores, this.actions); 82 communityRecipes(this.stores, this.actions);
83 todos(this.stores, this.actions);
82 } 84 }
83} 85}