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, 6 insertions, 0 deletions
diff --git a/src/stores/index.js b/src/stores/index.js
index 1912418a2..10dd56665 100644
--- a/src/stores/index.js
+++ b/src/stores/index.js
@@ -12,6 +12,9 @@ import RequestStore from './RequestStore';
12import GlobalErrorStore from './GlobalErrorStore'; 12import GlobalErrorStore from './GlobalErrorStore';
13import { workspaceStore } from '../features/workspaces'; 13import { workspaceStore } from '../features/workspaces';
14import { announcementsStore } from '../features/announcements'; 14import { announcementsStore } from '../features/announcements';
15import { serviceLimitStore } from '../features/serviceLimit';
16import { communityRecipesStore } from '../features/communityRecipes';
17import { todosStore } from '../features/todos';
15 18
16export default (api, actions, router) => { 19export default (api, actions, router) => {
17 const stores = {}; 20 const stores = {};
@@ -31,6 +34,9 @@ export default (api, actions, router) => {
31 globalError: new GlobalErrorStore(stores, api, actions), 34 globalError: new GlobalErrorStore(stores, api, actions),
32 workspaces: workspaceStore, 35 workspaces: workspaceStore,
33 announcements: announcementsStore, 36 announcements: announcementsStore,
37 serviceLimit: serviceLimitStore,
38 communityRecipes: communityRecipesStore,
39 todos: todosStore,
34 }); 40 });
35 // Initialize all stores 41 // Initialize all stores
36 Object.keys(stores).forEach((name) => { 42 Object.keys(stores).forEach((name) => {