delete list

This commit is contained in:
2026-08-29 16:54:25 +02:00
parent d3bc028fce
commit 2912f7c455
8 changed files with 105 additions and 21 deletions
+7
View File
@@ -179,4 +179,11 @@ router.delete(
ShoppingListController.deleteItem.bind(ShoppingListController)
);
router.delete(
"/lists/:id",
auth,
ShoppingListController.deleteList.bind(ShoppingListController)
);
module.exports = router;