Skip to content

Instantly share code, notes, and snippets.

@azizulhakim
Last active October 29, 2016 04:39
Show Gist options
  • Save azizulhakim/0fd66d186cad1eaaff11b878e6802bfe to your computer and use it in GitHub Desktop.
Save azizulhakim/0fd66d186cad1eaaff11b878e6802bfe to your computer and use it in GitHub Desktop.
function isLoggedIn(req, res, next){
if (req.isAuthenticated()){
return next();
}
res.redirect('/');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment