Class: ActionController::RequestForgeryProtection::ProtectionMethods::NullSession::NullSessionHash

Inherits:
Rack::Session::Abstract::SessionHash
  • Object
show all
Defined in:
actionpack/lib/action_controller/metal/request_forgery_protection.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(req) ⇒ NullSessionHash

Returns a new instance of NullSessionHash.



249
250
251
252
253
# File 'actionpack/lib/action_controller/metal/request_forgery_protection.rb', line 249

def initialize(req)
  super(nil, req)
  @data = {}
  @loaded = true
end

Instance Method Details

#destroyObject

no-op



256
# File 'actionpack/lib/action_controller/metal/request_forgery_protection.rb', line 256

def destroy; end

#enabled?Boolean

Returns:

  • (Boolean)


262
263
264
# File 'actionpack/lib/action_controller/metal/request_forgery_protection.rb', line 262

def enabled?
  false
end

#exists?Boolean

Returns:

  • (Boolean)


258
259
260
# File 'actionpack/lib/action_controller/metal/request_forgery_protection.rb', line 258

def exists?
  true
end