mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 01:51:40 -05:00
Sort email newsletter posts by baseScore
(time-independent), not score
.
This commit is contained in:
parent
f02a33315e
commit
5e3d2e3320
3 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
## v0.22.2
|
||||
|
||||
* Made `approvePost` and `unapprovePost` methods take `postId` instead of `post` as argument and fixed approve/unapprove bug.
|
||||
* Now sorting email newsletter posts by `baseScore` (time-independent), not `score`.
|
||||
|
||||
## v0.22.1 “DebugScope”
|
||||
|
||||
|
|
|
@ -205,7 +205,7 @@ Posts.views.add("campaign", function (terms) {
|
|||
$gte: terms.after
|
||||
}
|
||||
},
|
||||
options: {sort: {sticky: -1, score: -1}}
|
||||
options: {sort: {baseScore: -1}}
|
||||
};
|
||||
});
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
## v0.22.2
|
||||
|
||||
* Made `approvePost` and `unapprovePost` methods take `postId` instead of `post` as argument and fixed approve/unapprove bug.
|
||||
* Made `approvePost` and `unapprovePost` methods take `postId` instead of `post` as argument and fixed approve/unapprove bug.
|
||||
* Now sorting email newsletter posts by `baseScore` (time-independent), not `score`.
|
Loading…
Add table
Reference in a new issue