From bd50bdb415346329e772a90f26828376a6a1cffb Mon Sep 17 00:00:00 2001 From: djones Date: Mon, 6 Sep 2010 16:22:13 +1200 Subject: refactoring the frontend to use more partials, separate out the categories into it's own controller, namespace the blog into it's own folder and create a base blog controller for handling common front end tasks --- app/controllers/blog/categories_controller.rb | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 app/controllers/blog/categories_controller.rb (limited to 'app/controllers/blog/categories_controller.rb') diff --git a/app/controllers/blog/categories_controller.rb b/app/controllers/blog/categories_controller.rb new file mode 100644 index 0000000..71ceec1 --- /dev/null +++ b/app/controllers/blog/categories_controller.rb @@ -0,0 +1,7 @@ +class Blog::CategoriesController < BlogController + + def show + @category = BlogCategory.find(params[:id]) + end + +end \ No newline at end of file -- cgit v1.2.3