From ffafb30b9b394188e1b60ec836ad83f1738c266d Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 7 Mar 2024 13:36:42 +0200 Subject: [PATCH] Fixed API get_all_cards doesn't return SwimlaneId. Please test. Thanks to mohammadZahedian, xator91 and xet7. Fixes #5319 --- models/cards.js | 1 + 1 file changed, 1 insertion(+) diff --git a/models/cards.js b/models/cards.js index 8cef2d74c..cfc41d322 100644 --- a/models/cards.js +++ b/models/cards.js @@ -3258,6 +3258,7 @@ if (Meteor.isServer) { _id: doc._id, title: doc.title, description: doc.description, + swimlaneId: doc.swimlaneId, receivedAt: doc.receivedAt, startAt: doc.startAt, dueAt: doc.dueAt,