Method: ActionDispatch::Request::Session#exists?

Defined in:
actionpack/lib/action_dispatch/request/session.rb

#exists?Boolean



230
231
232
233
234
# File 'actionpack/lib/action_dispatch/request/session.rb', line 230

def exists?
  return false unless enabled?
  return @exists unless @exists.nil?
  @exists = @by.send(:session_exists?, @req)
end