0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 13:08:40 +08:00
discourse/app/models/concerns/anon_cache_invalidator.rb
2023-01-09 14:14:59 +00:00

11 lines
204 B
Ruby
Vendored

# 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