mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
Added dates & assignees to REST API calls #3145
I have added the dates (stat, due, end) and the assignees to the output of the REST API Calls
This commit is contained in:
parent
5e49006b6f
commit
d2a7a82870
1 changed files with 8 additions and 0 deletions
|
|
@ -2168,6 +2168,10 @@ if (Meteor.isServer) {
|
||||||
title: doc.title,
|
title: doc.title,
|
||||||
description: doc.description,
|
description: doc.description,
|
||||||
listId: doc.listId,
|
listId: doc.listId,
|
||||||
|
startAt:doc.startAt,
|
||||||
|
dueAt: doc.dueAt,
|
||||||
|
endAt: doc.endAt,
|
||||||
|
assignees: doc.assignees,
|
||||||
};
|
};
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
@ -2204,6 +2208,10 @@ if (Meteor.isServer) {
|
||||||
_id: doc._id,
|
_id: doc._id,
|
||||||
title: doc.title,
|
title: doc.title,
|
||||||
description: doc.description,
|
description: doc.description,
|
||||||
|
startAt:doc.startAt,
|
||||||
|
dueAt: doc.dueAt,
|
||||||
|
endAt: doc.endAt,
|
||||||
|
assignees: doc.assignees,
|
||||||
};
|
};
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue