refinerycms-blog/app/controllers/blog/categories_controller.rb
2010-11-23 09:34:11 +13:00

7 lines
120 B
Ruby

class Blog::CategoriesController < BlogController
def show
@category = BlogCategory.find(params[:id])
end
end