aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/index.js
diff options
context:
space:
mode:
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),