mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-27 13:40:00 +00: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();
|
|||
};
|