fehler behoben

This commit is contained in:
LukasNowy
2018-11-20 13:15:21 +01:00
parent 04c0d69cb3
commit 6766a6a3e9
3 changed files with 8 additions and 2 deletions

View File

@ -100,7 +100,7 @@ router.post("/shoppinglist", async function(req, res, next) {
//GET Shoppinglist detail
router.get("/shoppinglist/:sl_id", async (req, res) => {
router.get("/shoppinglist_json/:sl_id", async (req, res) => {
try {
res.status(200).send(await postgres.displayShoppinglist(req.params.sl_id));
}