method

is_storage_strategy?

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: ActionController::RequestForgeryProtection::ClassMethods
is_storage_strategy?(object) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.