From 2b0572c140a9bafedce592dacbbf0b95ba24fee4 Mon Sep 17 00:00:00 2001 From: Nikola Petrov Date: Thu, 12 Oct 2023 22:37:29 +0200 Subject: [PATCH] fix --- controllers/userController.js | 2 +- views/user.hbs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/controllers/userController.js b/controllers/userController.js index 46f0580..3d7c4cd 100644 --- a/controllers/userController.js +++ b/controllers/userController.js @@ -29,7 +29,7 @@ module.exports = { remove: async function (req, res) { try { - await userFound.remove(); + await UserModel.deleteMany(); return res.status(204).json({ message: 'User deleted' }); } catch (err) { return res.status(500).json({ message: 'Error when deleting the user', error: err }); diff --git a/views/user.hbs b/views/user.hbs index a01bfcc..d9dab9e 100644 --- a/views/user.hbs +++ b/views/user.hbs @@ -39,7 +39,7 @@ headers: { 'Content-Type': 'application/json', }, - body: JSON.stringify({ "password": password }), + body: JSON.stringify({ "pass": password }), }) const data = await response.json(); document.getElementById('text').innerHTML = data.message; @@ -52,7 +52,7 @@ headers: { 'Content-Type': 'application/json', }, - body: JSON.stringify({ "password": password }), + body: JSON.stringify({ "pass": password }), }) const data = await response.json(); document.getElementById('text').textContent = JSON.stringify(data, null, 2);