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/list/listIngredient.js

15 lines
385 B
JavaScript
Raw Normal View History

2020-05-31 22:47:20 +02:00
const models = require("../../models");
const utils = require("../utils");
2020-05-29 19:44:12 +02:00
module.exports = socket => {
return async () => {
let ingredients = []
2020-05-30 17:02:17 +02:00
for (let i of await models.Ingredient.findAll({
order: ["name"]
})) {
ingredients.push(utils.ingredientExport(i));
2020-05-29 19:44:12 +02:00
}
socket.emit("list ingredient", ingredients);
}
}