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/setIngredient.js

22 lines
635 B
JavaScript
Raw Normal View History

2020-05-31 22:47:20 +02:00
const models = require("../../models");
const utils = require("../utils");
module.exports = socket => {
return async (data) => {
try {
let i = await models.Ingredient.findByPk(data.id);
if (!i)
throw new Error("Ingredient not found !");
if (await utils.update(i, data)) {
let send = utils.ingredientExport(i);
socket.emit("set ingredient", send);
socket.broadcast.emit("set ingredient", send);
}
} catch (e) {
socket.emit("internal error");
console.error(e);
}
}
}