Files
growstuff/app/models/comment_sweeper.rb

16 lines
232 B
Ruby

class CommentSweeper < 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