This commit is contained in:
Martin McKeaveney 2021-06-15 13:47:08 +01:00
parent 3eaaff9901
commit d52d7b8484
1 changed files with 5 additions and 3 deletions

View File

@ -123,9 +123,11 @@ exports.bulkDestroy = async ctx => {
// TODO: this can probably be optimised to a single SQL statement in the future
let promises = []
for (let row of rows) {
promises.push(handleRequest(appId, DataSourceOperation.DELETE, tableId, {
id: row._id,
}))
promises.push(
handleRequest(appId, DataSourceOperation.DELETE, tableId, {
id: row._id,
})
)
}
await Promise.all(promises)
ctx.body = { response: { ok: true }, rows }