heartcombo--devise/lib/devise/models/registerable.rb

28 lines
756 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Devise
module Models
# Registerable is responsible for everything related to registering a new
# resource (ie user sign up).
module Registerable
2010-07-15 16:13:55 +00:00
extend ActiveSupport::Concern
2012-02-24 22:56:04 +00:00
def self.required_fields(klass)
[]
end
2010-07-15 16:13:55 +00:00
module ClassMethods
# A convenience method that receives both parameters and session to
# initialize a user. This can be used by OAuth, for example, to send
2010-07-15 16:13:55 +00:00
# in the user token and be stored on initialization.
#
# By default discards all information sent by the session by calling
# new with params.
def new_with_session(params, session)
new(params)
end
end
end
end
end