diff options
author | Brice Sanchez <bricesanchez@users.noreply.github.com> | 2016-06-01 11:57:17 -0400 |
---|---|---|
committer | Brice Sanchez <bricesanchez@users.noreply.github.com> | 2016-06-01 11:57:17 -0400 |
commit | 193317eaf6e01a26bdf97125f98fba95c9269275 (patch) | |
tree | f5b3c15cfeed2e3169467cac90c2a1cb33077ad0 /app | |
parent | 4926254e1762681f467c617a682c8c5f5bda328c (diff) | |
parent | c4bdb2f86a55abfaf9a5917e39a39712e7e00153 (diff) | |
download | refinerycms-blog-193317eaf6e01a26bdf97125f98fba95c9269275.tar.gz refinerycms-blog-193317eaf6e01a26bdf97125f98fba95c9269275.tar.bz2 refinerycms-blog-193317eaf6e01a26bdf97125f98fba95c9269275.zip |
Merge pull request #441 from dougbradbury/master
Sort Tags and Categories by newest first
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/refinery/blog/categories_controller.rb | 2 | ||||
-rw-r--r-- | app/controllers/refinery/blog/posts_controller.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/refinery/blog/categories_controller.rb b/app/controllers/refinery/blog/categories_controller.rb index b5ab574..649bfe6 100644 --- a/app/controllers/refinery/blog/categories_controller.rb +++ b/app/controllers/refinery/blog/categories_controller.rb @@ -4,7 +4,7 @@ module Refinery def show @category = Refinery::Blog::Category.friendly.find(params[:id]) - @posts = @category.posts.live.includes(:comments, :categories).with_globalize.page(params[:page]) + @posts = @category.posts.live.newest_first.uniq.includes(:comments, :categories).with_globalize.page(params[:page]) end end diff --git a/app/controllers/refinery/blog/posts_controller.rb b/app/controllers/refinery/blog/posts_controller.rb index 2e504f7..8a9490f 100644 --- a/app/controllers/refinery/blog/posts_controller.rb +++ b/app/controllers/refinery/blog/posts_controller.rb @@ -78,7 +78,7 @@ module Refinery def tagged @tag = ActsAsTaggableOn::Tag.find(params[:tag_id]) @tag_name = @tag.name - @posts = Post.live.tagged_with(@tag_name).page(params[:page]) + @posts = Post.live.newest_first.uniq.tagged_with(@tag_name).page(params[:page]) end private |