Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 | // utils/access.js exports.requireAccess = (...allowed) => { return (req, res, next) => { if (!req.user || !allowed.includes(req.user.access_level)) { return res.status(403).json({ error: '접근 권한이 없습니다' }); } next(); }; }; |