From c84140f6cc937941918c1c3317c74b46a2f8881a Mon Sep 17 00:00:00 2001 From: Galip Tolga Erdem Date: Tue, 22 Dec 2020 11:30:29 +0300 Subject: [PATCH] Fixed missing line Fixed missing line in How to Customize the SignIn Manager for ABP Applications article. --- .../2020-04-19-Customize-the-SignIn-Manager/POST.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/en/Community-Articles/2020-04-19-Customize-the-SignIn-Manager/POST.md b/docs/en/Community-Articles/2020-04-19-Customize-the-SignIn-Manager/POST.md index 1342407880d..9ae426624f8 100644 --- a/docs/en/Community-Articles/2020-04-19-Customize-the-SignIn-Manager/POST.md +++ b/docs/en/Community-Articles/2020-04-19-Customize-the-SignIn-Manager/POST.md @@ -71,7 +71,8 @@ public async override Task GetE ?? provider; return new Microsoft.AspNetCore.Identity.ExternalLoginInfo(auth.Principal, provider, providerKey, providerDisplayName) { - AuthenticationTokens = auth.Properties.GetTokens() + AuthenticationTokens = auth.Properties.GetTokens(), + AuthenticationProperties = auth.Properties }; } ````