13 lines
213 B
JavaScript
Raw Normal View History

2015-10-22 17:54:43 +02:00
/**
* List every entries of a model.
*/
module.exports = function * () {
try {
const entry = yield strapi.hooks.blueprints.find(this);
this.body = entry;
} catch (err) {
this.body = err;
}
};