From ea3de10100f174cdfa23ae89fcb1c068d73bf233 Mon Sep 17 00:00:00 2001 From: Robert Paciorek Date: Sun, 7 Jan 2024 16:24:00 +0000 Subject: [PATCH] disable sending email in LoginParent reply --- src/Controllers/Common/AuthenticationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controllers/Common/AuthenticationController.cs b/src/Controllers/Common/AuthenticationController.cs index d7962b6..eff74bb 100644 --- a/src/Controllers/Common/AuthenticationController.cs +++ b/src/Controllers/Common/AuthenticationController.cs @@ -54,7 +54,7 @@ public class AuthenticationController : Controller { var response = new ParentLoginInfo { UserName = user.Username, - Email = user.Email, + //Email = user.Email, /* disabled to avoid put email in client debug logs */ ApiToken = session.ApiToken.ToString(), UserID = user.Id.ToString(), Status = MembershipUserStatus.Success,