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

14 lines
381 B
JavaScript

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