aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/blog/categories_controller.rb
blob: 71ceec171abf1ec987cd43693d99dbe427425882 (plain) (blame)
1
2
3
4
5
6
7
class Blog::CategoriesController < BlogController

  def show
    @category = BlogCategory.find(params[:id])
  end
  
end