aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/blog/categories_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/blog/categories_controller.rb')
-rw-r--r--app/controllers/blog/categories_controller.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/app/controllers/blog/categories_controller.rb b/app/controllers/blog/categories_controller.rb
deleted file mode 100644
index efda778..0000000
--- a/app/controllers/blog/categories_controller.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-module Blog
- class CategoriesController < BlogController
-
- def show
- @category = BlogCategory.find(params[:id])
- @blog_posts = @category.posts.live.includes(:comments, :categories).paginate({
- :page => params[:page],
- :per_page => RefinerySetting.find_or_set(:blog_posts_per_page, 10)
- })
- end
-
- end
-end \ No newline at end of file