Added dates & assignees to REST API calls incl receivedAt

I have added the dates (received, start, due, end) and the assignees to the output of the REST API Calls.
This commit is contained in:
GitGramm 2020-06-01 15:44:51 +02:00 committed by GitHub
parent d2a7a82870
commit 1df3d56f7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2168,6 +2168,7 @@ if (Meteor.isServer) {
title: doc.title,
description: doc.description,
listId: doc.listId,
receivedAt: doc.receivedAt,
startAt:doc.startAt,
dueAt: doc.dueAt,
endAt: doc.endAt,
@ -2208,6 +2209,7 @@ if (Meteor.isServer) {
_id: doc._id,
title: doc.title,
description: doc.description,
receivedAt: doc.receivedAt,
startAt:doc.startAt,
dueAt: doc.dueAt,
endAt: doc.endAt,