Skip to content

Instantly share code, notes, and snippets.

@sespinosa
Created June 11, 2017 08:36
Show Gist options
  • Save sespinosa/96218b126650d839e220c00231027c8a to your computer and use it in GitHub Desktop.
Save sespinosa/96218b126650d839e220c00231027c8a to your computer and use it in GitHub Desktop.
var myController = {
root: function(req, res) {
if(req.session().algo) {
res.view('index', {
foo: 'bar'
});
}
else {
res.view('login')
}
}
};
module.exports = myController;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment