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 38 39 40 41 | import AppError from "../../errors/AppError"; import CheckContactOpenTickets from "../../helpers/CheckContactOpenTickets"; import GetDefaultWhatsApp from "../../helpers/GetDefaultWhatsApp"; import Ticket from "../../models/Ticket"; import ShowContactService from "../ContactServices/ShowContactService"; interface Request { contactId: number; status: string; userId: number; } const CreateTicketService = async ({ contactId, status, userId }: Request): Promise<Ticket> => { const defaultWhatsapp = await GetDefaultWhatsApp(); await CheckContactOpenTickets(contactId); const { isGroup } = await ShowContactService(contactId); const { id }: Ticket = await defaultWhatsapp.$create("ticket", { contactId, status, isGroup, userId }); const ticket = await Ticket.findByPk(id, { include: ["contact"] }); if (!ticket) { throw new AppError("ERR_CREATING_TICKET"); } return ticket; }; export default CreateTicketService; |