projeto-hit/backend/src/services/WhatsappService/AssociateWhatsappQueue.ts

13 lines
265 B
TypeScript

import Whatsapp from "../../models/Whatsapp";
const AssociateWhatsappQueue = async (
whatsapp: Whatsapp,
queueIds: number[]
): Promise<void> => {
await whatsapp.$set("queues", queueIds);
await whatsapp.reload();
};
export default AssociateWhatsappQueue;