29794/app-shell/src/middlewares/modify-path.js
2025-03-11 17:37:06 +00:00

8 lines
179 B
JavaScript

function modifyPath(req, res, next) {
if (req.body && req.body.path) {
req.body.path = '../../../' + req.body.path;
}
next();
}
module.exports = modifyPath;