Make profile.initials available in publications

This commit is contained in:
Nico 2020-02-28 22:05:33 +01:00
parent 493d71a198
commit 21b75edcdd
2 changed files with 2 additions and 0 deletions

View file

@ -192,6 +192,7 @@ Meteor.publishRelations('board', function(boardId, isArchived) {
username: 1,
'profile.fullname': 1,
'profile.avatarUrl': 1,
'profile.initials': 1,
},
},
),

View file

@ -6,6 +6,7 @@ Meteor.publish('user-miniprofile', function(userId) {
username: 1,
'profile.fullname': 1,
'profile.avatarUrl': 1,
'profile.initials': 1,
},
});
});