2015-10-22 17:54:43 +02:00

13 lines
209 B
JavaScript

/**
* Update a specific entry.
*/
module.exports = function * () {
try {
const entry = yield strapi.hooks.blueprints.update(this);
this.body = entry;
} catch (err) {
this.body = err;
}
};