Vulcan/packages/telescope-daily/lib/daily.js

18 lines
287 B
JavaScript
Raw Normal View History

2014-08-27 16:43:41 +09:00
viewNav.push({
route: 'postsDaily',
label: 'Day By Day'
});
2014-08-27 09:24:37 +09:00
viewParameters.daily = function (terms) {
return {
find: {
postedAt: {
$gte: terms.after
}
},
options: {
2014-08-27 16:43:41 +09:00
sort: {createdAt: -1, sticky: -1, baseScore: -1},
limit: 0
2014-08-27 09:24:37 +09:00
}
};
}