mirror of
https://github.com/strapi/strapi.git
synced 2025-07-20 15:36:59 +00:00
13 lines
204 B
JavaScript
13 lines
204 B
JavaScript
![]() |
/**
|
||
|
* Create a new entry.
|
||
|
*/
|
||
|
|
||
|
module.exports = function * () {
|
||
|
try {
|
||
|
const entry = yield strapi.hooks.blueprints.create(this);
|
||
|
this.body = entry;
|
||
|
} catch (err) {
|
||
|
this.body = err;
|
||
|
}
|
||
|
};
|