15 lines
293 B
JavaScript
15 lines
293 B
JavaScript
Meteor.publish("user", function(){
|
|
return [
|
|
Meteor.users.find(this.userId, {fields: {
|
|
roles: 1,
|
|
username: 1,
|
|
profile: 1,
|
|
apiKey: 1,
|
|
librarySubscriptions: 1,
|
|
lastPatreonPostClicked: 1,
|
|
patreon: 1,
|
|
}}),
|
|
PatreonPosts.find({},{sort: {dateAdded: -1}, limit: 1})
|
|
];
|
|
});
|