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