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

19 lines
318 B
JavaScript
Raw Normal View History

viewsMenu.push({
2014-08-27 16:43:41 +09:00
route: 'postsDaily',
label: 'daily',
description: 'day_by_day_view'
2014-08-27 16:43:41 +09:00
});
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
}
};
}