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 7f89bf1fb..c9ec77612 100644
--- a/src/stores/index.js
+++ b/src/stores/index.js
@@ -12,6 +12,7 @@ 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';
15import { communityRecipesStore } from '../features/communityRecipes'; 16import { communityRecipesStore } from '../features/communityRecipes';
16 17
17export default (api, actions, router) => { 18export default (api, actions, router) => {
@@ -32,6 +33,7 @@ export default (api, actions, router) => {
32 globalError: new GlobalErrorStore(stores, api, actions), 33 globalError: new GlobalErrorStore(stores, api, actions),
33 workspaces: workspaceStore, 34 workspaces: workspaceStore,
34 announcements: announcementsStore, 35 announcements: announcementsStore,
36 serviceLimit: serviceLimitStore,
35 communityRecipes: communityRecipesStore, 37 communityRecipes: communityRecipesStore,
36 }); 38 });
37 // Initialize all stores 39 // Initialize all stores