mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-22 05:38:46 +00:00
5 lines
133 B
JavaScript
5 lines
133 B
JavaScript
// TODO test this middleware
|
|
export default function setupBodyMiddleware (req, res, next) {
|
|
req.body = req.body || {};
|
|
next();
|
|
}
|