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

13 lines
211 B
JavaScript

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