From 93596a1375640e87bc167221269e633d74733d5c Mon Sep 17 00:00:00 2001 From: Rishabh Date: Wed, 26 Jan 2022 16:56:10 +0530 Subject: [PATCH] Updated frontend routing to include products for page/post refs https://github.com/TryGhost/Team/issues/1071 - `products` relation is needed on post/page to tackle custom tiers visibility, this change attaches `products` as default include for frontend controllers --- core/frontend/services/routing/controllers/email-post.js | 2 +- core/frontend/services/routing/controllers/preview.js | 2 +- core/frontend/services/routing/controllers/static.js | 2 +- core/frontend/services/routing/helpers/entry-lookup.js | 2 +- core/frontend/services/routing/helpers/fetch-data.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/frontend/services/routing/controllers/email-post.js b/core/frontend/services/routing/controllers/email-post.js index 74ff9feb93..24d56d969f 100644 --- a/core/frontend/services/routing/controllers/email-post.js +++ b/core/frontend/services/routing/controllers/email-post.js @@ -18,7 +18,7 @@ module.exports = function emailPostController(req, res, next) { const params = { uuid: req.params.uuid, - include: 'authors,tags', + include: 'authors,tags,tiers', context: { member: res.locals.member } diff --git a/core/frontend/services/routing/controllers/preview.js b/core/frontend/services/routing/controllers/preview.js index e6dacae5dc..1881f29187 100644 --- a/core/frontend/services/routing/controllers/preview.js +++ b/core/frontend/services/routing/controllers/preview.js @@ -19,7 +19,7 @@ module.exports = function previewController(req, res, next) { const params = { uuid: req.params.uuid, status: 'all', - include: 'authors,tags' + include: 'authors,tags,tiers' }; return api[res.routerOptions.query.controller] diff --git a/core/frontend/services/routing/controllers/static.js b/core/frontend/services/routing/controllers/static.js index 92246cd471..7009ecccae 100644 --- a/core/frontend/services/routing/controllers/static.js +++ b/core/frontend/services/routing/controllers/static.js @@ -13,7 +13,7 @@ function processQuery(query, locals) { // We override the `include` property for now, because the full data set is required anyway. if (_.get(query, 'resource') === 'posts' || _.get(query, 'resource') === 'pages') { _.extend(query.options, { - include: 'authors,tags' + include: 'authors,tags,tiers' }); } diff --git a/core/frontend/services/routing/helpers/entry-lookup.js b/core/frontend/services/routing/helpers/entry-lookup.js index 4269fbb895..f8645ab682 100644 --- a/core/frontend/services/routing/helpers/entry-lookup.js +++ b/core/frontend/services/routing/helpers/entry-lookup.js @@ -39,7 +39,7 @@ function entryLookup(postUrl, routerOptions, locals) { } let options = { - include: 'authors,tags' + include: 'authors,tags,tiers' }; options.context = {member: locals.member}; diff --git a/core/frontend/services/routing/helpers/fetch-data.js b/core/frontend/services/routing/helpers/fetch-data.js index 1c70cb6494..caea7b2a19 100644 --- a/core/frontend/services/routing/helpers/fetch-data.js +++ b/core/frontend/services/routing/helpers/fetch-data.js @@ -19,7 +19,7 @@ const queryDefaults = { */ const defaultQueryOptions = { options: { - include: 'authors,tags' + include: 'authors,tags,tiers' } };