summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--models/cards.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/models/cards.js b/models/cards.js
index b6cc27b7..e1d48653 100644
--- a/models/cards.js
+++ b/models/cards.js
@@ -2168,6 +2168,11 @@ if (Meteor.isServer) {
title: doc.title,
description: doc.description,
listId: doc.listId,
+ receivedAt: doc.receivedAt,
+ startAt:doc.startAt,
+ dueAt: doc.dueAt,
+ endAt: doc.endAt,
+ assignees: doc.assignees,
};
}),
});
@@ -2204,6 +2209,11 @@ if (Meteor.isServer) {
_id: doc._id,
title: doc.title,
description: doc.description,
+ receivedAt: doc.receivedAt,
+ startAt:doc.startAt,
+ dueAt: doc.dueAt,
+ endAt: doc.endAt,
+ assignees: doc.assignees,
};
}),
});