mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
Merge pull request #3146 from GitGramm/patch-1
Added dates & assignees to REST API calls #3145
This commit is contained in:
commit
2876ce633c
1 changed files with 10 additions and 0 deletions
|
@ -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,
|
||||
};
|
||||
}),
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue