1234567891011121314151617181920212223242526272829 |
- Meteor.publish('posts', function() {
- return Posts.find();
- });
- Meteor.publish('push_feed', function() {
- return PushFeed.find();
- });
- Meteor.publish('userData', function () {
-
- if (this.userId) {
- return Meteor.users.find({
- _id: this.userId
- }, {
- fields: {
- 'emails': 1
- }
- });
- }
- });
|