2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2021-05-31 13:05:54 +00:00
|
|
|
# Cache.get => read alias for backwards compatibility
|
|
|
|
# Even if main codebase is migrated, custom addons may still use old syntax!
|
|
|
|
module ActiveSupport
|
|
|
|
module Cache
|
|
|
|
class Store
|
|
|
|
def get(key)
|
|
|
|
ActiveSupport::Deprecation.warn("Method 'get' is deprecated. Please use 'Cache.read' instead.")
|
|
|
|
|
|
|
|
read(key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|