AfterDeleteSaveFunction()
AfterDeleteSaveFunction: (
params) =>Promise<object>
Modify record to change how data is saved to database. Return ok: false and error: string to stop execution and show error message to user. Return ok: true to continue execution.
Parameters
| Parameter | Type | Description |
|---|---|---|
params | object | - |
params.adminUser | AdminUser | Admin user performing the action. |
params.adminforth | IAdminForth | Adminforth instance. |
params.extra? | HttpExtra | Extra HTTP information. Prefer using extra.response over the top-level response field. |
params.record | any | Record data, that was deleted. |
params.recordId | any | Primary key value of the record to delete. |
params.resource | AdminForthResource | Resource info. |
params.response | IAdminForthHttpResponse | HTTP response object. Deprecated Since 1.2.9. Will be removed in 2.0.0. Use extra.response instead. |
Returns
Promise<object>
error?
optionalerror:string
ok
ok:
boolean