2
0
Эх сурвалжийг харах

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

Lauri Ojansivu 5 жил өмнө
parent
commit
7d920e938b

+ 1 - 0
server/publications/boards.js

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

+ 1 - 0
server/publications/users.js

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