mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
12 lines
243 B
Ruby
12 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
|