mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
19 lines
No EOL
367 B
JavaScript
19 lines
No EOL
367 B
JavaScript
Telescope.menus.register("viewsMenu", {
|
|
route: 'postsSingleDayDefault',
|
|
label: 'singleday',
|
|
description: 'posts_of_a_single_day'
|
|
});
|
|
|
|
Posts.views.register("singleday", function (terms) {
|
|
return {
|
|
find: {
|
|
postedAt: {
|
|
$gte: terms.after,
|
|
$lt: terms.before
|
|
}
|
|
},
|
|
options: {
|
|
sort: {sticky: -1, score: -1}
|
|
}
|
|
};
|
|
}); |