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

22 lines
610 B
JavaScript
Raw Permalink 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 s = await models.Sauce.findByPk(data.id);
if (!s)
throw new Error("Sauce not found !");
if (await utils.update(s, data)) {
let send = utils.sauceExport(s);
socket.emit("set sauce", send);
socket.broadcast.emit("set sauce", send);
}
} catch (e) {
socket.emit("internal error");
console.error(e);
}
}
}