Last active
December 10, 2015 08:48
-
-
Save hgezim/4410072 to your computer and use it in GitHub Desktop.
This file contains 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
Meteor.methods | |
sendListToEmails: (from_email, to_emails, list_id, uid) -> | |
Meteor.http.post('blah') | |
blah_blue: () -> | |
console.log "Sup." | |
create_user: () -> | |
console.log "In createuser Meteor method." |
This file contains 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
Meteor.methods({ | |
sendListToEmails: function(from_email, to_emails, list_id, uid) {} | |
}); | |
Meteor.http.post('blah')({ | |
blah_blue: function() { | |
return console.log("Sup."); | |
}, | |
create_user: function() { | |
return console.log("In createuser Meteor method."); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment