Merge pull request #3146 from GitGramm/patch-1

Added dates & assignees to REST API calls #3145
This commit is contained in:
Lauri Ojansivu 2020-06-01 16:51:57 +03:00 committed by GitHub
commit 2876ce633c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,
};
}),
});