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

15 lines
355 B
JavaScript
Raw Permalink 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 sauces = []
for (let s of await models.Sauce.findAll({
2020-05-30 17:02:17 +02:00
order: ["name"]
})) {
sauces.push(utils.sauceExport(s));
2020-05-29 19:44:12 +02:00
}
socket.emit("list sauce", sauces);
}
}