Skip to content

Instantly share code, notes, and snippets.

@ric03uec
Created April 1, 2012 09:15
Show Gist options
  • Save ric03uec/2274022 to your computer and use it in GitHub Desktop.
Save ric03uec/2274022 to your computer and use it in GitHub Desktop.
logout route handler
/**
* Logout the current user and clear the session
*/
app.get('/logout', function(req, res){
logger.log('Serving request for url [GET] ' + req.route.path);
req.session.user = undefined;
res.redirect('/');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment