Files
growstuff/app/models/comment_sweeper.rb
2013-08-21 21:42:58 +10:00

16 lines
259 B
Ruby

class CommentSweeper < ActionController::Caching::Sweeper
observe Comment
def after_create(comment)
expire_fragment('recent_posts')
end
def after_update(comment)
end
def after_destroy(comment)
expire_fragment('recent_posts')
end
end