Const
Method name for PRE quotesDeletePre and POST quotesDelete
quotesDeletePre
quotesDelete
This method is triggered after pressing the Delete button on quote detail page /#/qc/quotes/<quoteId>, or when deleting from quotes list /#/qc/quotes.
/#/qc/quotes/<quoteId>
/#/qc/quotes
Notes: POST and PRE returns same deletedQuotes array of object.
deletedQuotes
Additional Properties:
export const quotesDelete = async ({ api, deletedQuotes }) => { // TODO: Add your code return;} Copy
export const quotesDelete = async ({ api, deletedQuotes }) => { // TODO: Add your code return;}
Method name for PRE
quotesDeletePre
and POSTquotesDelete
This method is triggered after pressing the Delete button on quote detail page
/#/qc/quotes/<quoteId>
, or when deleting from quotes list/#/qc/quotes
.Notes: POST and PRE returns same
deletedQuotes
array of object.Additional Properties:
deletedQuotes
: Returns array of object of the deleted quotes.