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

17 lines
399 B
JavaScript

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