mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
![]() |
viewParameters.daily = function (terms) {
|
||
|
return {
|
||
|
find: {
|
||
|
postedAt: {
|
||
|
$gte: terms.after
|
||
|
}
|
||
|
},
|
||
|
options: {
|
||
|
sort: {createdAt: -1, sticky: -1, baseScore: -1}
|
||
|
}
|
||
|
};
|
||
|
}
|