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

20 lines
487 B
JavaScript
Raw Normal View History

const models = require("../models");
2020-05-29 19:44:12 +02:00
module.exports = socket => {
return async () => {
let dishes = []
2020-05-30 17:02:17 +02:00
for (let d of await models.Dish.findAll({
order: ["name"]
})) {
2020-05-29 19:44:12 +02:00
dishes.push({
id: d.id,
name: d.name,
price: d.price,
maxIngredients: d.maxIngredients,
maxSauces: d.maxSauces
2020-05-29 19:44:12 +02:00
});
}
socket.emit("list dish", dishes);
}
}