0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Used posts-service for Posts Content API

We want to keep the differences between the Content & Admin API's in the API
layer, rather than at the service layer. The caching functionality hasn't been
moved yet though, and can be handled separately.
This commit is contained in:
Fabien "egg" O'Carroll 2023-07-12 14:14:43 +01:00 committed by Fabien 'egg' O'Carroll
parent e87c994bba
commit be0dbe3e91

View file

@ -3,6 +3,8 @@ const tpl = require('@tryghost/tpl');
const errors = require('@tryghost/errors');
const {mapQuery} = require('@tryghost/mongo-utils');
const postsPublicService = require('../../services/posts-public');
const getPostServiceInstance = require('../../services/posts/posts-service');
const postsService = getPostServiceInstance();
const allowedIncludes = ['tags', 'authors', 'tiers', 'sentiment'];
@ -56,7 +58,7 @@ module.exports = {
...frame.options,
mongoTransformer: rejectPrivateFieldsTransformer
};
return models.Post.findPage(options);
return postsService.browsePosts(options);
}
},