mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-05 23:48:17 -05:00
17 lines
280 B
Ruby
17 lines
280 B
Ruby
class PostSweeper < ActionController::Caching::Sweeper
|
|
observe Post
|
|
|
|
def after_create(post)
|
|
expire_fragment('recent_posts')
|
|
end
|
|
|
|
def after_update(post)
|
|
expire_fragment('recent_posts')
|
|
end
|
|
|
|
def after_destroy(post)
|
|
expire_fragment('recent_posts')
|
|
end
|
|
|
|
end
|