System Information
- Strapi Version:
- Operating System:
- Database:
- Node Version:
- NPM Version:
- Yarn Version:
Hi, i already enabled the one time routes, controllers and services. I’m working on a content type inside a plugin and when generating the content type allowed to generate the bootstrap.
Example of a controller:
async create(ctx) {
const response = await super.create(ctx);
return response;
},
Now i want to create many at one time. Can i simply create the createMan function? Or i need to work around, like check what comes if in the body comes an array or not?