Merge branch 'master' of github.com:wekan/wekan

This commit is contained in:
Lauri Ojansivu 2020-03-01 20:27:22 +02:00
commit 7d920e938b
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,
},
});
});