Flowdock
method

find_session

Importance_0
v3.0.9 - Show latest stable - 0 notes - Class: ActiveRecord::SessionStore
find_session(id) private

No documentation

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

Hide source
# File activerecord/lib/active_record/session_store.rb, line 335
      def find_session(id)
        @@session_class.find_by_session_id(id) ||
          @@session_class.new(:session_id => id, :data => {})
      end
Register or log in to add new notes.