This commit is contained in:
Emily
2025-01-27 16:48:52 +01:00
parent ad9aabcbf6
commit a3e74adf9c

View File

@@ -34,7 +34,7 @@ app.use((req, res, next) => {
res.status(403).json({ error: 'token not valid' }); res.status(403).json({ error: 'token not valid' });
return; return;
} }
console.log(req.path, req.body); console.log(req.path);
next(); next();
}); });