mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 09:10:25 +08:00
Merge pull request #4807 from techAPJ/email-token-social
FIX: confirm email token for user created via social login
This commit is contained in:
commit
ef093b1610
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue