UNPKG

165 BJavaScriptView Raw
1module.exports = ({ user, grant }, res, next) => {
2 if (!user && (!grant || grant.role !== 'Public'))
3 return res.status(401).send();
4
5 return next();
6};