diff options
author | Lauri Ojansivu <x@xet7.org> | 2020-03-01 20:27:22 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2020-03-01 20:27:22 +0200 |
commit | 7d920e938be7f1d387f40dd2bfedb0b1795f2fbf (patch) | |
tree | 32ea0636c64f96cc076f1746cb5bc3c78b18947f | |
parent | 26b521e86e6ac40b7ba25bbe8dac7bf4d48d43ce (diff) | |
parent | 83b042701f1779bd0f48d2f8a64d3c1d1258ac9a (diff) | |
download | wekan-7d920e938be7f1d387f40dd2bfedb0b1795f2fbf.tar.gz wekan-7d920e938be7f1d387f40dd2bfedb0b1795f2fbf.tar.bz2 wekan-7d920e938be7f1d387f40dd2bfedb0b1795f2fbf.zip |
Merge branch 'master' of github.com:wekan/wekan
-rw-r--r-- | server/publications/boards.js | 1 | ||||
-rw-r--r-- | server/publications/users.js | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/server/publications/boards.js b/server/publications/boards.js index e3095833..f24dce47 100644 --- a/server/publications/boards.js +++ b/server/publications/boards.js @@ -192,6 +192,7 @@ Meteor.publishRelations('board', function(boardId, isArchived) { username: 1, 'profile.fullname': 1, 'profile.avatarUrl': 1, + 'profile.initials': 1, }, }, ), diff --git a/server/publications/users.js b/server/publications/users.js index 59411ca0..c04f8c5c 100644 --- a/server/publications/users.js +++ b/server/publications/users.js @@ -6,6 +6,7 @@ Meteor.publish('user-miniprofile', function(userId) { username: 1, 'profile.fullname': 1, 'profile.avatarUrl': 1, + 'profile.initials': 1, }, }); }); |