mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 05:27:14 -04:00
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:
parent
d2a7a82870
commit
1df3d56f7c
1 changed files with 2 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue