obtener todos los status

This commit is contained in:
2020-11-15 23:47:09 -06:00
parent af11de6387
commit 324bd3184d
7 changed files with 15 additions and 5 deletions
+9
View File
@@ -0,0 +1,9 @@
const Status = require('../../db/tablas/Status');
const get = () => {
return Status.findAll().then((res) => {
return res;
});
};
module.exports = get;