mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
13 lines
275 B
Ruby
13 lines
275 B
Ruby
# 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
|