module Devise::Models::Registerable::ClassMethods

def new_with_session(params, session)

new with params.
By default discards all information sent by the session by calling

in the user token and be stored on initialization.
initialize a user. This can be used by OAuth, for example, to send
A convenience method that receives both parameters and session to
def new_with_session(params, session)
  new(params)
end