Merge pull request #2855 from evazion/feat-comment-metatags

Add order:comment_bumped, order:comment_bumped_asc metatags.
This commit is contained in:
Albert Yi
2017-01-23 11:22:17 -08:00
committed by GitHub
3 changed files with 23 additions and 1 deletions

View File

@@ -415,7 +415,13 @@ class PostQueryBuilder
relation = relation.order("posts.last_commented_at DESC NULLS LAST, posts.id DESC")
when "comment_asc", "comm_asc"
relation = relation.order("posts.last_commented_at ASC NULLS FIRST, posts.id DESC")
relation = relation.order("posts.last_commented_at ASC NULLS LAST, posts.id DESC")
when "comment_bumped"
relation = relation.order("posts.last_comment_bumped_at DESC NULLS LAST, posts.id DESC")
when "comment_bumped_asc"
relation = relation.order("posts.last_comment_bumped_at ASC NULLS LAST, posts.id DESC")
when "note"
relation = relation.order("posts.last_noted_at DESC NULLS LAST, posts.id DESC")