Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 2x 2x 2x | import { toast } from "react-toastify";
/**
* Function to handle success message after deleting a request type.
* @param {string} message - The success message to display.
*/
export function onDeleteSuccess(message) {
console.log(message);
toast(message);
}
/**
* Function to generate Axios parameters for deleting a request type.
* @param {object} cell - The table cell containing the request type data.
* @returns {object} Axios parameters for the DELETE request.
*/
export function cellToAxiosParamsDelete(cell) {
return {
url: "/api/request-types",
method: "DELETE",
params: {
id: cell.row.values.id,
},
};
}
|