Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
kfet/sockets/set/setDessert.js

21 lines
620 B
JavaScript

const models = require("../../models");
const utils = require("../utils");
module.exports = socket => {
return async (data) => {
try {
let d = await models.Dessert.findByPk(data.id);
if (!d)
throw new Error("Dessert not found !");
if (await utils.update(d, data)) {
let send = utils.dessertExport(d);
socket.emit("set dessert", send);
socket.broadcast.emit("set dessert", send);
}
} catch (e) {
socket.emit("internal error");
console.error(e);
}
}
}