Skip to content

Instantly share code, notes, and snippets.

@ciwolsey
Created November 30, 2014 05:59
Show Gist options
  • Select an option

  • Save ciwolsey/0e77fdaa5d08002a1b93 to your computer and use it in GitHub Desktop.

Select an option

Save ciwolsey/0e77fdaa5d08002a1b93 to your computer and use it in GitHub Desktop.
Meteor.methods({
createNewService: function(host, port){
try{
var result = HostLogs.insert({ip: host, port: port});
}catch(e){
console.log(e);
}
return result;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment