mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
42 lines
1.0 KiB
JavaScript
42 lines
1.0 KiB
JavaScript
|
const common = require('../../lib/common');
|
||
|
const models = require('../../models');
|
||
|
const ALLOWED_INCLUDES = ['authors', 'tags'];
|
||
|
|
||
|
module.exports = {
|
||
|
docName: 'preview',
|
||
|
|
||
|
read: {
|
||
|
permissions: true,
|
||
|
options: [
|
||
|
'include'
|
||
|
],
|
||
|
data: [
|
||
|
'uuid'
|
||
|
],
|
||
|
validation: {
|
||
|
options: {
|
||
|
include: {
|
||
|
values: ALLOWED_INCLUDES
|
||
|
}
|
||
|
},
|
||
|
data: {
|
||
|
uuid: {
|
||
|
required: true
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
query(frame) {
|
||
|
return models.Post.findOne(Object.assign({status: 'all'}, frame.data), frame.options)
|
||
|
.then((model) => {
|
||
|
if (!model) {
|
||
|
throw new common.errors.NotFoundError({
|
||
|
message: common.i18n.t('errors.api.posts.postNotFound')
|
||
|
});
|
||
|
}
|
||
|
|
||
|
return model;
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
};
|