AfterEditSaveFunction
AfterEditSaveFunction = (
params) =>Promise<{error?:string;ok:boolean; }>
Parameters
| Parameter | Type | Description |
|---|---|---|
params | { adminforth: IAdminForth; adminUser: AdminUser; extra?: HttpExtra; oldRecord: any; record: any; recordId: any; resource: AdminForthResource; response: IAdminForthHttpResponse; updates: any; } | - |
params.adminforth | IAdminForth | Adminforth instance. |
params.adminUser | AdminUser | Admin user performing the action. |
params.extra? | HttpExtra | Extra HTTP information. Prefer using extra.response over the top-level response field. |
params.oldRecord | any | Record data before update. |
params.record | any | Record after update. @deprecated. Will be removed in 2.0.0. Use updates instead. |
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. |
params.updates | any | Record updates. |
Returns
Promise<{ error?: string; ok: boolean; }>