I\'m using meteor and I have a question about the publish function (server side)
Meteor.publish(\'users\', function () { .... }
I\'m sendin
Your code looks good but you're forgetting the .fetch() method on your task request. It should be var tasks = Tasks.find().fetch();
.fetch()
var tasks = Tasks.find().fetch();