Article.find({}).exec(function(err, articles) {
articles.date = moment();
return res.json({articles: articles});
});
The extra date property that i'm adding is not showing in response.
Article.find({}).exec(function(err, articles) {
articles.date = moment();
return res.json({articles: articles});
});
The extra date property that i'm adding is not showing in response.