aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/refinery/blog/categories_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/refinery/blog/categories_controller.rb')
-rw-r--r--app/controllers/refinery/blog/categories_controller.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/app/controllers/refinery/blog/categories_controller.rb b/app/controllers/refinery/blog/categories_controller.rb
index a363b8c..57196c3 100644
--- a/app/controllers/refinery/blog/categories_controller.rb
+++ b/app/controllers/refinery/blog/categories_controller.rb
@@ -4,10 +4,7 @@ module Refinery
def show
@category = Refinery::BlogCategory.find(params[:id])
- @blog_posts = @category.posts
- .live
- .includes(:comments, :categories)
- .page(params[:page])
+ @blog_posts = @category.posts.live.includes(:comments, :categories).page(params[:page])
end
end