aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/refinery
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/refinery')
-rw-r--r--app/controllers/refinery/blog/admin/comments_controller.rb2
-rw-r--r--app/controllers/refinery/blog/admin/posts_controller.rb2
-rw-r--r--app/controllers/refinery/blog/posts_controller.rb2
3 files changed, 0 insertions, 6 deletions
diff --git a/app/controllers/refinery/blog/admin/comments_controller.rb b/app/controllers/refinery/blog/admin/comments_controller.rb
index ce4ac70..dd9a351 100644
--- a/app/controllers/refinery/blog/admin/comments_controller.rb
+++ b/app/controllers/refinery/blog/admin/comments_controller.rb
@@ -3,8 +3,6 @@ module Refinery
module Admin
class CommentsController < ::Refinery::AdminController
- cache_sweeper Refinery::BlogSweeper
-
crudify :'refinery/blog/comment',
:title_attribute => :name,
:order => 'published_at DESC'
diff --git a/app/controllers/refinery/blog/admin/posts_controller.rb b/app/controllers/refinery/blog/admin/posts_controller.rb
index cbde2f8..b5d7e63 100644
--- a/app/controllers/refinery/blog/admin/posts_controller.rb
+++ b/app/controllers/refinery/blog/admin/posts_controller.rb
@@ -3,8 +3,6 @@ module Refinery
module Admin
class PostsController < ::Refinery::AdminController
- cache_sweeper Refinery::BlogSweeper
-
crudify :'refinery/blog/post',
:order => 'published_at DESC',
:include => [:translations]
diff --git a/app/controllers/refinery/blog/posts_controller.rb b/app/controllers/refinery/blog/posts_controller.rb
index a236267..b04000b 100644
--- a/app/controllers/refinery/blog/posts_controller.rb
+++ b/app/controllers/refinery/blog/posts_controller.rb
@@ -2,8 +2,6 @@ module Refinery
module Blog
class PostsController < BlogController
- caches_page :index, :unless => proc {|c| c.refinery_user_signed_in? || c.flash.any? || params[:page].present? }
-
before_filter :find_all_blog_posts, :except => [:archive]
before_filter :find_blog_post, :only => [:show, :comment, :update_nav]
before_filter :find_tags