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 27 28 29 30 31 32 33 34 35 36 37 | import AppError from "../../errors/AppError"; import GetWbotMessage from "../../helpers/GetWbotMessage"; import Message from "../../models/Message"; import Ticket from "../../models/Ticket"; const DeleteWhatsAppMessage = async (messageId: string): Promise<Message> => { const message = await Message.findByPk(messageId, { include: [ { model: Ticket, as: "ticket", include: ["contact"] } ] }); if (!message) { throw new AppError("No message found with this ID."); } const { ticket } = message; const messageToDelete = await GetWbotMessage(ticket, messageId); try { await messageToDelete.delete(true); } catch (err) { throw new AppError("ERR_DELETE_WAPP_MSG"); } await message.update({ isDeleted: true }); return message; }; export default DeleteWhatsAppMessage; |