fix
This commit is contained in:
parent
6d3dcc773d
commit
2b0572c140
@ -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 });
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user