From d12d0d10f8b7b6eb1f31c10466dad523ead54dcb Mon Sep 17 00:00:00 2001 From: Nikola Petrov Date: Fri, 6 Oct 2023 23:29:25 +0200 Subject: [PATCH] limit remove to type 0 --- controllers/cashTransactionController.js | 2 +- views/cash.hbs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/controllers/cashTransactionController.js b/controllers/cashTransactionController.js index 5ae64bc..fa4b264 100644 --- a/controllers/cashTransactionController.js +++ b/controllers/cashTransactionController.js @@ -81,7 +81,7 @@ module.exports = { }, delete: async function (req, res) { - cashTransactionModel.deleteMany({}) + cashTransactionModel.deleteMany({ type: 0 }) .then(data => { res.status(201).json({ message: "OK" }); }); diff --git a/views/cash.hbs b/views/cash.hbs index 7059353..e64e170 100644 --- a/views/cash.hbs +++ b/views/cash.hbs @@ -35,6 +35,6 @@ -
+
\ No newline at end of file