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