Files
nginx-proxy-manager/backend/lib/express/user-id-from-me.js
T
2026-08-22 23:10:26 +10:00

9 lines
247 B
JavaScript

export default (req, res, next) => {
if (req.params.user_id === "me" && res.locals.access) {
req.params.user_id = res.locals.access.token.get("attrs").id;
} else {
req.params.user_id = Number.parseInt(req.params.user_id, 10);
}
next();
};