1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-07 11:49:47 +00:00
discourse/app/models/concerns/anon_cache_invalidator.rb
2023-01-09 14:14:59 +00:00

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