aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/controllers/refinery/blog_controller.rb2
-rw-r--r--app/helpers/refinery/blog/controller_helper.rb30
-rw-r--r--app/helpers/refinery/blog_controller_helper.rb28
3 files changed, 31 insertions, 29 deletions
diff --git a/app/controllers/refinery/blog_controller.rb b/app/controllers/refinery/blog_controller.rb
index b875b44..314c919 100644
--- a/app/controllers/refinery/blog_controller.rb
+++ b/app/controllers/refinery/blog_controller.rb
@@ -1,7 +1,7 @@
module Refinery
class BlogController < ::ApplicationController
- include BlogControllerHelper
+ include Blog::ControllerHelper
helper :'refinery/blog_posts'
before_filter :find_page, :find_all_blog_categories
diff --git a/app/helpers/refinery/blog/controller_helper.rb b/app/helpers/refinery/blog/controller_helper.rb
new file mode 100644
index 0000000..74a189b
--- /dev/null
+++ b/app/helpers/refinery/blog/controller_helper.rb
@@ -0,0 +1,30 @@
+module Refinery
+ module Blog
+ module ControllerHelper
+
+ protected
+
+ def find_blog_post
+ unless (@blog_post = Refinery::BlogPost.find(params[:id])).try(:live?)
+ if refinery_user? and current_user.authorized_plugins.include?("refinerycms_blog")
+ @blog_post = Refinery::BlogPost.find(params[:id])
+ else
+ error_404
+ end
+ end
+ end
+
+ def find_all_blog_posts
+ @blog_posts = Refinery::BlogPost.live.includes(:comments, :categories).page(params[:page])
+ end
+
+ def find_tags
+ @tags = Refinery::BlogPost.tag_counts_on(:tags)
+ end
+
+ def find_all_blog_categories
+ @blog_categories = Refinery::BlogCategory.all
+ end
+ end
+ end
+end
diff --git a/app/helpers/refinery/blog_controller_helper.rb b/app/helpers/refinery/blog_controller_helper.rb
deleted file mode 100644
index 2edc2f6..0000000
--- a/app/helpers/refinery/blog_controller_helper.rb
+++ /dev/null
@@ -1,28 +0,0 @@
-module Refinery
- module BlogControllerHelper
-
- protected
-
- def find_blog_post
- unless (@blog_post = Refinery::BlogPost.find(params[:id])).try(:live?)
- if refinery_user? and current_user.authorized_plugins.include?("refinerycms_blog")
- @blog_post = Refinery::BlogPost.find(params[:id])
- else
- error_404
- end
- end
- end
-
- def find_all_blog_posts
- @blog_posts = Refinery::BlogPost.live.includes(:comments, :categories).page(params[:page])
- end
-
- def find_tags
- @tags = Refinery::BlogPost.tag_counts_on(:tags)
- end
-
- def find_all_blog_categories
- @blog_categories = Refinery::BlogCategory.all
- end
- end
-end