Skip to content

Commit 8c00adc

Browse files
committed
Fix GHSL-2026-036_Wekan.
Thanks to GHSL and xet7 !
1 parent 1c8667e commit 8c00adc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

server/publications/boards.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,11 @@ publishComposite('board', async function(boardId, isArchived) {
225225
// Integrations
226226
{
227227
async find(board) {
228-
return await ReactiveCache.getIntegrations({ boardId: board._id }, {}, true);
228+
return await ReactiveCache.getIntegrations(
229+
{ boardId: board._id },
230+
{ fields: { token: 0 } },
231+
true,
232+
);
229233
}
230234
},
231235
// CardCommentReactions at board level

0 commit comments

Comments
 (0)