aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/index.js
diff options
context:
space:
mode:
authorLibravatar haraldox <hnaumann+github@gmail.com>2018-02-26 11:52:11 +0100
committerLibravatar haraldox <hnaumann+github@gmail.com>2018-02-26 11:52:11 +0100
commit31820727240772a049c6af71742baa8e50039cda (patch)
tree3647701f523ebdf0cd3d9bbdb88574a7b3d8081d /src/stores/index.js
parentMerge pull request #721 from meetfranz/i18n (diff)
downloadferdium-app-31820727240772a049c6af71742baa8e50039cda.tar.gz
ferdium-app-31820727240772a049c6af71742baa8e50039cda.tar.zst
ferdium-app-31820727240772a049c6af71742baa8e50039cda.zip
initial commit
Diffstat (limited to 'src/stores/index.js')
-rw-r--r--src/stores/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/index.js b/src/stores/index.js
index 2d99e3952..96b844c95 100644
--- a/src/stores/index.js
+++ b/src/stores/index.js
@@ -1,5 +1,6 @@
1import AppStore from './AppStore'; 1import AppStore from './AppStore';
2import UserStore from './UserStore'; 2import UserStore from './UserStore';
3import FeaturesStore from './FeaturesStore';
3import SettingsStore from './SettingsStore'; 4import SettingsStore from './SettingsStore';
4import ServicesStore from './ServicesStore'; 5import ServicesStore from './ServicesStore';
5import RecipesStore from './RecipesStore'; 6import RecipesStore from './RecipesStore';
@@ -16,6 +17,7 @@ export default (api, actions, router) => {
16 router, 17 router,
17 app: new AppStore(stores, api, actions), 18 app: new AppStore(stores, api, actions),
18 user: new UserStore(stores, api, actions), 19 user: new UserStore(stores, api, actions),
20 features: new FeaturesStore(stores, api, actions),
19 settings: new SettingsStore(stores, api, actions), 21 settings: new SettingsStore(stores, api, actions),
20 services: new ServicesStore(stores, api, actions), 22 services: new ServicesStore(stores, api, actions),
21 recipes: new RecipesStore(stores, api, actions), 23 recipes: new RecipesStore(stores, api, actions),