Class: ActionController::RequestForgeryProtection::ProtectionMethods::NullSession
- Inherits:
- 
      Object
      
        - Object
- ActionController::RequestForgeryProtection::ProtectionMethods::NullSession
 
- Defined in:
- actionpack/lib/action_controller/metal/request_forgery_protection.rb
Defined Under Namespace
Classes: NullCookieJar, NullSessionHash
Instance Method Summary collapse
- 
  
    
      #handle_unverified_request  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    This is the method that defines the application behavior when a request is found to be unverified. 
- 
  
    
      #initialize(controller)  ⇒ NullSession 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of NullSession. 
Constructor Details
#initialize(controller) ⇒ NullSession
Returns a new instance of NullSession.
| 255 256 257 | # File 'actionpack/lib/action_controller/metal/request_forgery_protection.rb', line 255 def initialize(controller) @controller = controller end | 
Instance Method Details
#handle_unverified_request ⇒ Object
This is the method that defines the application behavior when a request is found to be unverified.
| 261 262 263 264 265 266 267 | # File 'actionpack/lib/action_controller/metal/request_forgery_protection.rb', line 261 def handle_unverified_request request = @controller.request request.session = NullSessionHash.new(request) request.flash = nil request. = { skip: true } request. = NullCookieJar.build(request, {}) end |