Browse Source

Fixed missing line

Fixed missing line in How to Customize the SignIn Manager for ABP Applications article.
pull/6751/head
Galip Tolga Erdem 6 years ago
parent
commit
c84140f6cc
  1. 3
      docs/en/Community-Articles/2020-04-19-Customize-the-SignIn-Manager/POST.md

3
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
};
}
````

Loading…
Cancel
Save