Rev 2722 | Rev 2731 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import { axios } from '@app/utils'export const sendInmail = async (uuid, message) => {return axios.post(`/inmail/${uuid}/message`).then((response) => {const { success, data } = response.dataif (!success) throw data})}export const deleteInmail = async (url) => {return axios.post(url).then((response) => {const { success, data } = response.dataif (!success) throw data})}