|
|
@ -66,7 +66,8 @@ categoriesController.list = function(req, res, next) {
|
|
|
|
if (category && Array.isArray(category.posts) && category.posts.length) {
|
|
|
|
if (category && Array.isArray(category.posts) && category.posts.length) {
|
|
|
|
category.teaser = {
|
|
|
|
category.teaser = {
|
|
|
|
url: nconf.get('relative_path') + '/topic/' + category.posts[0].topic.slug + '/' + category.posts[0].index,
|
|
|
|
url: nconf.get('relative_path') + '/topic/' + category.posts[0].topic.slug + '/' + category.posts[0].index,
|
|
|
|
timestampISO: category.posts[0].timestampISO
|
|
|
|
timestampISO: category.posts[0].timestampISO,
|
|
|
|
|
|
|
|
pid: category.posts[0].pid
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|