Integrated

This commit is contained in:
Llewellyn D'souza
2021-12-28 18:04:25 +05:30
parent ef4b420dec
commit 5d07fb8871
2 changed files with 19 additions and 0 deletions

View File

@@ -55,6 +55,15 @@ module.exports = {
}
},
/**
* Upload an image for the warehouse
*/
addWarehouseImage: async (req, res, next) => {
// req.file contains the `warehouse-image`
console.dir({ file: req.file });
res.send("ok");
},
/**
* Update a warehouses detail
*/