Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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