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.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/stores/index.js b/src/stores/index.js
index 4eeef7982..b6e481e8a 100644
--- a/src/stores/index.js
+++ b/src/stores/index.js
@@ -6,16 +6,13 @@ import ServicesStore from './ServicesStore';
6import RecipesStore from './RecipesStore'; 6import RecipesStore from './RecipesStore';
7import RecipePreviewsStore from './RecipePreviewsStore'; 7import RecipePreviewsStore from './RecipePreviewsStore';
8import UIStore from './UIStore'; 8import UIStore from './UIStore';
9import PaymentStore from './PaymentStore';
10import NewsStore from './NewsStore'; 9import NewsStore from './NewsStore';
11import RequestStore from './RequestStore'; 10import RequestStore from './RequestStore';
12import GlobalErrorStore from './GlobalErrorStore'; 11import GlobalErrorStore from './GlobalErrorStore';
13import { workspaceStore } from '../features/workspaces'; 12import { workspaceStore } from '../features/workspaces';
14import { announcementsStore } from '../features/announcements'; 13import { announcementsStore } from '../features/announcements';
15import { serviceLimitStore } from '../features/serviceLimit';
16import { communityRecipesStore } from '../features/communityRecipes'; 14import { communityRecipesStore } from '../features/communityRecipes';
17import { todosStore } from '../features/todos'; 15import { todosStore } from '../features/todos';
18import { planSelectionStore } from '../features/planSelection';
19 16
20export default (api, actions, router) => { 17export default (api, actions, router) => {
21 const stores = {}; 18 const stores = {};
@@ -29,16 +26,13 @@ export default (api, actions, router) => {
29 recipes: new RecipesStore(stores, api, actions), 26 recipes: new RecipesStore(stores, api, actions),
30 recipePreviews: new RecipePreviewsStore(stores, api, actions), 27 recipePreviews: new RecipePreviewsStore(stores, api, actions),
31 ui: new UIStore(stores, api, actions), 28 ui: new UIStore(stores, api, actions),
32 payment: new PaymentStore(stores, api, actions),
33 news: new NewsStore(stores, api, actions), 29 news: new NewsStore(stores, api, actions),
34 requests: new RequestStore(stores, api, actions), 30 requests: new RequestStore(stores, api, actions),
35 globalError: new GlobalErrorStore(stores, api, actions), 31 globalError: new GlobalErrorStore(stores, api, actions),
36 workspaces: workspaceStore, 32 workspaces: workspaceStore,
37 announcements: announcementsStore, 33 announcements: announcementsStore,
38 serviceLimit: serviceLimitStore,
39 communityRecipes: communityRecipesStore, 34 communityRecipes: communityRecipesStore,
40 todos: todosStore, 35 todos: todosStore,
41 planSelection: planSelectionStore,
42 }); 36 });
43 // Initialize all stores 37 // Initialize all stores
44 Object.keys(stores).forEach((name) => { 38 Object.keys(stores).forEach((name) => {