has_cache.rb 237 B

12345678910
  1. # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
  2. module ApplicationModel::HasCache
  3. extend ActiveSupport::Concern
  4. def cache_update(_other)
  5. ActiveSupport::CurrentAttributes.clear_all
  6. true
  7. end
  8. end