aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/refinery/blog_controller.rb
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2011-09-19 19:06:25 -0700
committerPhilip Arndt <parndt@gmail.com>2011-09-19 19:06:25 -0700
commit8a69c623bb8a3fa9c03d25b8253fd710da081198 (patch)
tree863d62228de1f2e3b45e44bd7a618c60664630e6 /app/controllers/refinery/blog_controller.rb
parent7fe5fe5de6a0e7ef8ac011d7d6b85c61a2f6be96 (diff)
parent1b51e2343d477d2065c016d77ef73d527cb37b0e (diff)
downloadrefinerycms-blog-8a69c623bb8a3fa9c03d25b8253fd710da081198.tar.gz
refinerycms-blog-8a69c623bb8a3fa9c03d25b8253fd710da081198.tar.bz2
refinerycms-blog-8a69c623bb8a3fa9c03d25b8253fd710da081198.zip
Merge pull request #139 from resolve/abstract-filters-into-controller-helper
Abstract filters into controller helper
Diffstat (limited to 'app/controllers/refinery/blog_controller.rb')
-rw-r--r--app/controllers/refinery/blog_controller.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/controllers/refinery/blog_controller.rb b/app/controllers/refinery/blog_controller.rb
deleted file mode 100644
index cbafdeb..0000000
--- a/app/controllers/refinery/blog_controller.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-module Refinery
- class BlogController < ::ApplicationController
-
- helper :'refinery/blog_posts'
- before_filter :find_page, :find_all_blog_categories
-
- protected
-
- def find_page
- @page = Refinery::Page.find_by_link_url("/blog")
- end
-
- def find_all_blog_categories
- @blog_categories = Refinery::BlogCategory.all
- end
-
- end
-end