Browse Source
Merge pull request #6777 from abpframework/auto-rel-merge-pr-4
Merge branch dev with rel-4.1
pull/6788/head
Mehmet Erim
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
docs/en/Community-Articles/2020-04-19-Customize-the-SignIn-Manager/POST.md
|
|
|
@ -71,7 +71,8 @@ public async override Task<Microsoft.AspNetCore.Identity.ExternalLoginInfo> GetE |
|
|
|
?? provider; |
|
|
|
return new Microsoft.AspNetCore.Identity.ExternalLoginInfo(auth.Principal, provider, providerKey, providerDisplayName) |
|
|
|
{ |
|
|
|
AuthenticationTokens = auth.Properties.GetTokens() |
|
|
|
AuthenticationTokens = auth.Properties.GetTokens(), |
|
|
|
AuthenticationProperties = auth.Properties |
|
|
|
}; |
|
|
|
} |
|
|
|
```` |
|
|
|
|