Browse Source

Merge pull request #16983 from abpframework/liangshiwei/account

if it is an external login using an external schema to sign
pull/16985/head
maliming 3 years ago
committed by GitHub
parent
commit
dee8cf549c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      modules/account/src/Volo.Abp.Account.Web/Pages/Account/Register.cshtml.cs

2
modules/account/src/Volo.Abp.Account.Web/Pages/Account/Register.cshtml.cs

@ -144,7 +144,7 @@ public class RegisterModel : AccountPageModel
))).CheckErrors();
}
await SignInManager.SignInAsync(user, isPersistent: true);
await SignInManager.SignInAsync(user, isPersistent: true, ExternalLoginAuthSchema);
}
protected virtual async Task CheckSelfRegistrationAsync()

Loading…
Cancel
Save