mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 15:06:11 +00:00
13 lines
213 B
JavaScript
13 lines
213 B
JavaScript
![]() |
/**
|
||
|
* 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;
|
||
|
}
|
||
|
};
|