FIX: confirm email token for user created via social login
This commit is contained in:
parent
bda20cc44a
commit
7fb17b83c4
|
@ -112,7 +112,8 @@ class Users::OmniauthCallbacksController < ApplicationController
|
|||
def user_found(user)
|
||||
# automatically activate/unstage any account if a provider marked the email valid
|
||||
if @auth_result.email_valid && @auth_result.email == user.email
|
||||
user.update!(staged: false, active: true)
|
||||
user.update!(staged: false)
|
||||
user.activate
|
||||
end
|
||||
|
||||
if ScreenedIpAddress.should_block?(request.remote_ip)
|
||||
|
|
Loading…
Reference in New Issue