Flowdock
method

destroy

Importance_0
v5.1.7 - Show latest stable - 0 notes - Class: Session
destroy() public

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 77
      def destroy
        clear
        options = self.options || {}
        @by.send(:delete_session, @req, options.id(@req), options)

        # Load the new sid to be written with the response
        @loaded = false
        load_for_write!
      end
Register or log in to add new notes.