Skip to content

Commit 1c8667e

Browse files
committed
Fix GHSL-2026-035_Wekan.
Thanks to GHSL and xet7 !
1 parent f0deed4 commit 1c8667e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

server/publications/notifications.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,14 @@ Meteor.publish('notificationUsers', async function() {
130130
.filter(v => !!v),
131131
},
132132
},
133-
{},
133+
{
134+
fields: {
135+
username: 1,
136+
'profile.fullname': 1,
137+
'profile.avatarUrl': 1,
138+
'profile.initials': 1,
139+
},
140+
},
134141
true,
135142
);
136143
return ret;

0 commit comments

Comments
 (0)