2015-10-30 14:36:19 +01:00

15 lines
223 B
JavaScript

'use strict';
/**
* Show a specific entry.
*/
module.exports = function * () {
try {
const entry = yield strapi.hooks.blueprints.findOne(this);
this.body = entry;
} catch (err) {
this.body = err;
}
};