LoginSignup
3
5

More than 5 years have passed since last update.

Rails devise omniauth-facebook で確認メールをスキップする

Posted at

変更前

def self.from_omniauth(auth)
  where(provider: auth.provider, uid: auth.uid).first_or_create do |user|
    user.email = auth.info.email
    user.password = Devise.friendly_token[0,20]
    user.name = auth.info.name   # assuming the user model has a name
    user.image = auth.info.image # assuming the user model has an image
  end
end

変更後

def self.from_omniauth(auth)
  user = where(provider: auth.provider, uid: auth.uid).first_or_initialize do |user|
    user.email = auth.info.email
    user.password = Devise.friendly_token[0,20]
    user.name = auth.info.name   # assuming the user model has a name
    user.image = auth.info.image # assuming the user model has an image
  end
  user.skip_confirmation!
  user.save
  user
end
3
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
5