Skip to content

Instantly share code, notes, and snippets.

@Unitech
Created January 29, 2013 03:10
Show Gist options
  • Save Unitech/4661471 to your computer and use it in GitHub Desktop.
Save Unitech/4661471 to your computer and use it in GitHub Desktop.
Node
app.namespace('/user', function(req, res, next) {
console.log(req.session.user);
_.isEmpty(req.session.user) ? res.redirect('/app/denied') : next();
}, require('./apps/User'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment