method
is_storage_strategy?
rails latest stable - Class:
ActionController::RequestForgeryProtection::ClassMethods
is_storage_strategy?(object)private
No documentation available.
# File actionpack/lib/action_controller/metal/request_forgery_protection.rb, line 228
def is_storage_strategy?(object)
object.respond_to?(:fetch) && object.respond_to?(:store) && object.respond_to?(:reset)
end