mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 14:17:22 +01:00
6 lines
136 B
JavaScript
6 lines
136 B
JavaScript
// TODO test this middleware
|
|
module.exports = function setupBodyMiddleware (req, res, next) {
|
|
req.body = req.body || {};
|
|
next();
|
|
};
|