fixed bug from latest commit

This commit is contained in:
Yaman 2014-12-31 11:58:28 -05:00
parent 8fd4f11b5f
commit baaa804a8a

View File

@ -20,7 +20,7 @@ Meteor.publish('chromebook', function() {
} }
else { else {
return Chromebooks.find({}, {fields: {number: 1, status: 1, userid: 1, last_checkout: 1}}); return Chromebooks.find({}, {fields: {number: 1, status: 1, userid: 1, last_checkout: 1, user: 1}});
} }
}); });