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 c9ec77612..10dd56665 100644
--- a/src/stores/index.js
+++ b/src/stores/index.js
@@ -14,6 +14,7 @@ import { workspaceStore } from '../features/workspaces';
14import { announcementsStore } from '../features/announcements'; 14import { announcementsStore } from '../features/announcements';
15import { serviceLimitStore } from '../features/serviceLimit'; 15import { serviceLimitStore } from '../features/serviceLimit';
16import { communityRecipesStore } from '../features/communityRecipes'; 16import { communityRecipesStore } from '../features/communityRecipes';
17import { todosStore } from '../features/todos';
17 18
18export default (api, actions, router) => { 19export default (api, actions, router) => {
19 const stores = {}; 20 const stores = {};
@@ -35,6 +36,7 @@ export default (api, actions, router) => {
35 announcements: announcementsStore, 36 announcements: announcementsStore,
36 serviceLimit: serviceLimitStore, 37 serviceLimit: serviceLimitStore,
37 communityRecipes: communityRecipesStore, 38 communityRecipes: communityRecipesStore,
39 todos: todosStore,
38 }); 40 });
39 // Initialize all stores 41 // Initialize all stores
40 Object.keys(stores).forEach((name) => { 42 Object.keys(stores).forEach((name) => {