mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
12 lines
204 B
Ruby
12 lines
204 B
Ruby
# frozen_string_literal: true
|
|
|
|
module AnonCacheInvalidator
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
after_destroy { Site.clear_anon_cache! }
|
|
|
|
after_save { Site.clear_anon_cache! }
|
|
end
|
|
end
|