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:
parent
e87c994bba
commit
be0dbe3e91
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue