File size: 210 Bytes
2070fe3
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
const isAuthenticated = (req, res, next) => {
  if (req.isAuthenticated()) {
    return next();
  }
  res.status(401).json({ message: 'Unauthorized. Please log in.' });
};

module.exports = { isAuthenticated };