aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/index.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-02 15:08:07 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-02 15:08:07 +0100
commita5aa5e1380a0847eb33be3315d164fb9e0e23255 (patch)
treea1ea4b0f635cabb54d9cf028809d2f079727b9a1 /src/stores/index.js
parentAdd instruction to install Franz with homebrew (#1134) (diff)
parentMerge branch 'develop' into release/5.0.0-beta.19 (diff)
downloadferdium-app-a5aa5e1380a0847eb33be3315d164fb9e0e23255.tar.gz
ferdium-app-a5aa5e1380a0847eb33be3315d164fb9e0e23255.tar.zst
ferdium-app-a5aa5e1380a0847eb33be3315d164fb9e0e23255.zip
Merge branch 'release/5.0.0-beta.19'
Diffstat (limited to 'src/stores/index.js')
-rw-r--r--src/stores/index.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stores/index.js b/src/stores/index.js
index 2d99e3952..f547d0a7a 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';
@@ -8,6 +9,7 @@ import UIStore from './UIStore';
8import PaymentStore from './PaymentStore'; 9import PaymentStore from './PaymentStore';
9import NewsStore from './NewsStore'; 10import NewsStore from './NewsStore';
10import RequestStore from './RequestStore'; 11import RequestStore from './RequestStore';
12import DictionaryStore from './DictionaryStore';
11import GlobalErrorStore from './GlobalErrorStore'; 13import GlobalErrorStore from './GlobalErrorStore';
12 14
13export default (api, actions, router) => { 15export default (api, actions, router) => {
@@ -16,6 +18,7 @@ export default (api, actions, router) => {
16 router, 18 router,
17 app: new AppStore(stores, api, actions), 19 app: new AppStore(stores, api, actions),
18 user: new UserStore(stores, api, actions), 20 user: new UserStore(stores, api, actions),
21 features: new FeaturesStore(stores, api, actions),
19 settings: new SettingsStore(stores, api, actions), 22 settings: new SettingsStore(stores, api, actions),
20 services: new ServicesStore(stores, api, actions), 23 services: new ServicesStore(stores, api, actions),
21 recipes: new RecipesStore(stores, api, actions), 24 recipes: new RecipesStore(stores, api, actions),
@@ -24,6 +27,7 @@ export default (api, actions, router) => {
24 payment: new PaymentStore(stores, api, actions), 27 payment: new PaymentStore(stores, api, actions),
25 news: new NewsStore(stores, api, actions), 28 news: new NewsStore(stores, api, actions),
26 requests: new RequestStore(stores, api, actions), 29 requests: new RequestStore(stores, api, actions),
30 dictionary: new DictionaryStore(stores, api, actions),
27 globalError: new GlobalErrorStore(stores, api, actions), 31 globalError: new GlobalErrorStore(stores, api, actions),
28 }); 32 });
29 // Initialize all stores 33 // Initialize all stores