defaultObjectsDelete
Overview
The VUEDA specific implementation for reactive-helper's list bulk delete crud function.
Signature
defaultObjectsDelete(args)
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| args | object | yes | The arguments object. |
args Properties
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| acknowledgeWarnings | string | Warnings digest from a prior 409, sent as the Acknowledge-Warnings header so the server lets the gated delete proceed. | ||
| dryRun | boolean | When true, sends the request in dry-run mode. The server answers a valid dry run 200, so that status is a success here only while dryRun is set; a 200 on a real delete stays a fault. | ||
| formData | any | Extra fields submitted alongside the delete, merged into the request body. | ||
| pks | string[] | The PKs of the objects to delete. | ||
| target | object | The arguments for the CRUD operation. |
Returns
CancellablePromise
- A cancellable promise.
Source
client/lib/utils/listCrud.js:230