mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 01:29:21 +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();
|
|||
};
|