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/listIngredient.js
2020-05-30 17:02:17 +02:00

17 lines
424 B
JavaScript

const models = require("../models");
module.exports = socket => {
return async () => {
let ingredients = []
for (let i of await models.Ingredient.findAll({
order: ["name"]
})) {
ingredients.push({
id: i.id,
name: i.name,
price: i.price
});
}
socket.emit("list ingredient", ingredients);
}
}