aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-10-17 16:22:11 +0200
committerLibravatar vantezzen <hello@vantezzen.io>2019-10-17 16:22:11 +0200
commit942466eb686c480133e1b0b8b9a2b975098b5bc4 (patch)
tree297a71efa4051949a4f2c411262558954c8c7d3a /src/stores
parentMerge pull request #121 from getferdi/l10n_develop (diff)
downloadferdium-app-942466eb686c480133e1b0b8b9a2b975098b5bc4.tar.gz
ferdium-app-942466eb686c480133e1b0b8b9a2b975098b5bc4.tar.zst
ferdium-app-942466eb686c480133e1b0b8b9a2b975098b5bc4.zip
Diffstat (limited to 'src/stores')
-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 c39b6d7f3..3d9542245 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -20,6 +20,7 @@ import settingsWS from '../features/settingsWS';
20import serviceLimit from '../features/serviceLimit'; 20import serviceLimit from '../features/serviceLimit';
21import communityRecipes from '../features/communityRecipes'; 21import communityRecipes from '../features/communityRecipes';
22import todos from '../features/todos'; 22import todos from '../features/todos';
23import accentColor from '../features/accentColor';
23 24
24import { DEFAULT_FEATURES_CONFIG } from '../config'; 25import { DEFAULT_FEATURES_CONFIG } from '../config';
25 26
@@ -83,5 +84,6 @@ export default class FeaturesStore extends Store {
83 serviceLimit(this.stores, this.actions); 84 serviceLimit(this.stores, this.actions);
84 communityRecipes(this.stores, this.actions); 85 communityRecipes(this.stores, this.actions);
85 todos(this.stores, this.actions); 86 todos(this.stores, this.actions);
87 accentColor(this.stores, this.actions);
86 } 88 }
87} 89}