aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
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
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')
-rw-r--r--src/stores/FeaturesStore.js2
-rw-r--r--src/stores/index.js2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/stores/FeaturesStore.js b/src/stores/FeaturesStore.js
index 1ac05d3b9..27334c9a2 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -17,6 +17,7 @@ import shareFranz from '../features/shareFranz';
17import announcements from '../features/announcements'; 17import announcements from '../features/announcements';
18import settingsWS from '../features/settingsWS'; 18import settingsWS from '../features/settingsWS';
19import serviceLimit from '../features/serviceLimit'; 19import serviceLimit from '../features/serviceLimit';
20import communityRecipes from '../features/communityRecipes';
20 21
21import { DEFAULT_FEATURES_CONFIG } from '../config'; 22import { DEFAULT_FEATURES_CONFIG } from '../config';
22 23
@@ -77,5 +78,6 @@ export default class FeaturesStore extends Store {
77 announcements(this.stores, this.actions); 78 announcements(this.stores, this.actions);
78 settingsWS(this.stores, this.actions); 79 settingsWS(this.stores, this.actions);
79 serviceLimit(this.stores, this.actions); 80 serviceLimit(this.stores, this.actions);
81 communityRecipes(this.stores, this.actions);
80 } 82 }
81} 83}
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) => {