method

load!

Importance_0
load!() 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_dispatch/request/session.rb, line 261
        def load!
          if enabled?
            id, session = @by.load_session @req
            options[:id] = id
            @delegate.replace(session.stringify_keys)
          end
          @loaded = true
        end
Register or log in to add new notes.