Which of this request-level information cannot be exposed using the property res.locals in the below given code snippet?
app.use(function(req, res, next){ res.locals.user = req.user; res.locals.authenticated = ! req.user.anonymous; next(); });
Options
- request path name
- authenticated user
- user settings
- download path name