Skip to content

Instantly share code, notes, and snippets.

@czbaker
Created November 4, 2015 21:23
Show Gist options
  • Select an option

  • Save czbaker/8c38c8182412586ffa8e to your computer and use it in GitHub Desktop.

Select an option

Save czbaker/8c38c8182412586ffa8e to your computer and use it in GitHub Desktop.
var ownerId;
Meteor.call("addPerson", personDoc, function(result) {
ownerId = result;
});
console.log(ownerId);
addPerson: function(doc) {
return People.insert(doc);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment