Created
November 4, 2015 21:11
-
-
Save czbaker/b0fcb8264ba8ef0b0dd5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var personDoc = { | |
| fname: fname, | |
| lname: lname, | |
| phone: phone | |
| }; | |
| var ownerId = Meteor.call("addPerson", personDoc); | |
| console.log(ownerId); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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