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

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

end