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

15 lines
228 B
JavaScript

'use strict';
/**
* 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;
}
};