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 | import Ticket from "../../models/Ticket"; import AppError from "../../errors/AppError"; import Contact from "../../models/Contact"; import User from "../../models/User"; const ShowTicketService = async (id: string | number): Promise<Ticket> => { const ticket = await Ticket.findByPk(id, { include: [ { model: Contact, as: "contact", attributes: ["id", "name", "number", "profilePicUrl"], include: ["extraInfo"] }, { model: User, as: "user", attributes: ["id", "name"] } ] }); if (!ticket) { throw new AppError("ERR_NO_TICKET_FOUND", 404); } return ticket; }; export default ShowTicketService; |