Skip to content

Instantly share code, notes, and snippets.

@Enome
Created August 28, 2012 17:06
Show Gist options
  • Save Enome/3500826 to your computer and use it in GitHub Desktop.
Save Enome/3500826 to your computer and use it in GitHub Desktop.
app.use(function (req, res, next) {
if (req.session.flash) {
extend(res.locals, req.session.flash);
delete req.session.flash;
}
next();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment