Removes references to password question/answer

This commit is contained in:
Shannon
2019-11-25 23:53:12 +11:00
parent 76b413e527
commit a458df360f
19 changed files with 13 additions and 232 deletions

View File

@@ -76,7 +76,6 @@ namespace Umbraco.Web.PublishedCache.NuCache
// see also PublishedContentType
AddIf(contentType, properties, "Email", member.Email);
AddIf(contentType, properties, "Username", member.Username);
AddIf(contentType, properties, "PasswordQuestion", member.PasswordQuestion);
AddIf(contentType, properties, "Comments", member.Comments);
AddIf(contentType, properties, "IsApproved", member.IsApproved);
AddIf(contentType, properties, "IsLockedOut", member.IsLockedOut);
@@ -103,8 +102,6 @@ namespace Umbraco.Web.PublishedCache.NuCache
public string UserName => _member.Username;
public string PasswordQuestion => _member.PasswordQuestion;
public string Comments => _member.Comments;
public bool IsApproved => _member.IsApproved;