hidden, color property

This commit is contained in:
Lukas Nowy
2018-12-09 19:17:12 +01:00
parent fb403d659e
commit 5589b0df3f
2 changed files with 6 additions and 6 deletions

View File

@ -97,7 +97,7 @@ router.get("/sharedshoppinglists", async function(req, res, next) {
router.post("/shoppinglist", async function(req, res, next) {
try {
res.status(200).send(await postgres.newShoppinglist(req.body.name, req.body.description, req.session.passport.user.profile.id));
res.status(200).send(await postgres.newShoppinglist(req.body.name, req.body.description, req.session.passport.user.profile.id, req.body.color));
}
catch(err) {
@ -133,7 +133,7 @@ router.delete("/shoppinglist", async (req, res) => {
router.post("/group", async (req, res) => {
try {
res.status(200).send(await postgres.addGroup(req.body.sl_id, req.body.name, req.body.color));
res.status(200).send(await postgres.addGroup(req.body.sl_id, req.body.name, req.body.color, req.body.hidden));
}
catch(err) {