delete /group
Gruppe mit allen Items löschen
This commit is contained in:
@ -243,6 +243,15 @@ router.put("/item", async (req, res) => {
|
||||
}
|
||||
});
|
||||
|
||||
router.delete("/group", async(req, res) => {
|
||||
try {
|
||||
res.status(200).send(await postgres.deleteGroup(req.body.group_id, req.body.sl_id));
|
||||
}
|
||||
|
||||
catch(err) {
|
||||
res.status(400).send(await err);
|
||||
}
|
||||
});
|
||||
|
||||
// Invite System
|
||||
|
||||
|
Reference in New Issue
Block a user