Skip to content

Instantly share code, notes, and snippets.

@npfitz
Created March 18, 2014 18:37
Show Gist options
  • Save npfitz/9626488 to your computer and use it in GitHub Desktop.
Save npfitz/9626488 to your computer and use it in GitHub Desktop.
'projects': function(req, res){
User.findOne(req.session.user.id)
.populate("projects")
.populate("account")
.exec(function(err, user){
res.json(user, 200);
});
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment