mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
13 lines
243 B
Ruby
13 lines
243 B
Ruby
class AnonSiteJsonCacheObserver < ActiveRecord::Observer
|
|
observe :category, :post_action_type, :user_field, :group
|
|
|
|
def after_destroy(object)
|
|
Site.clear_anon_cache!
|
|
end
|
|
|
|
def after_save(object)
|
|
Site.clear_anon_cache!
|
|
end
|
|
|
|
end
|