aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/index.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-06-14 17:21:33 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-06-14 17:21:33 +0200
commitb0e2f5cb5ea7109a81b1f9404fed084a25996efb (patch)
tree1df0700fa627a10971db62421bf6383cf3ce4080 /src/stores/index.js
parentRestrict services with customURL when not premium user (diff)
parentFix issue with dev recipe list (diff)
downloadferdium-app-b0e2f5cb5ea7109a81b1f9404fed084a25996efb.tar.gz
ferdium-app-b0e2f5cb5ea7109a81b1f9404fed084a25996efb.tar.zst
ferdium-app-b0e2f5cb5ea7109a81b1f9404fed084a25996efb.zip
Merge branch 'feature/3rd-party-limit' into feature/new-pricing
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) => {