fix view-locals example. Closes #1370

this was from 2x, doesnt need to be there at all
This commit is contained in:
TJ Holowaychuk 2012-10-15 16:07:56 -07:00
parent c492cde048
commit 44d0625e91

View File

@ -101,11 +101,6 @@ app.get('/middleware-locals', count2, users2, function(req, res, next){
res.render('user', { title: 'Users' });
});
app.get('/locals', function(req, res){
res.render('user', { title: 'Users' });
});
// keep in mind that middleware may be placed anywhere
// and in various combinations, so if you have locals
// that you wish to make available to all subsequent