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