UNPKG

stackpress

Version:

Incept is a content management framework.

16 lines (15 loc) 479 B
import batch from '../actions/batch.js'; export default function batchEventFactory(model) { return async function BatchEventAction(req, res, ctx) { if (res.body || (res.code && res.code !== 200)) { return; } const engine = ctx.plugin('database'); if (!engine) return; const rows = req.data('rows'); const response = await batch(model, engine, rows); res.fromStatusResponse(response); }; } ;