Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# frozen_string_literal: true
module AnonCacheInvalidator
extend ActiveSupport::Concern
included do
after_destroy { Site.clear_anon_cache! }
after_save { Site.clear_anon_cache! }
end