zammad/app/models/application_model/has_request_cache.rb

14 lines
275 B
Ruby
Raw Permalink Normal View History

# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
module ApplicationModel::HasRequestCache
extend ActiveSupport::Concern
included do
after_commit :clear_request_cache
end
def clear_request_cache
Auth::RequestCache.clear
end
end