Skip to content

Commit

Permalink
Revert "PT-578: Add property ApplicationUser.LastPasswordChangedDate (#…
Browse files Browse the repository at this point in the history
…2184)" (#2189)

This reverts commit aa73f1f.
  • Loading branch information
Vectorfield4 committed Mar 24, 2021
1 parent 8d1e909 commit dfa9062
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 621 deletions.
6 changes: 0 additions & 6 deletions src/VirtoCommerce.Platform.Core/Security/ApplicationUser.cs
Expand Up @@ -62,11 +62,6 @@ public class ApplicationUser : IdentityUser, IEntity, IAuditable, ICloneable
/// </summary>
public virtual bool PasswordExpired { get; set; }

/// <summary>
/// The last date when the password was changed
/// </summary>
public virtual DateTime LastPasswordChangedDate { get; set; }

public virtual void Patch(ApplicationUser target)
{
target.UserName = UserName;
Expand All @@ -92,7 +87,6 @@ public virtual void Patch(ApplicationUser target)
target.Status = Status;
target.Password = Password;
target.PasswordExpired = PasswordExpired;
target.LastPasswordChangedDate = LastPasswordChangedDate;
}

#region ICloneable members
Expand Down

0 comments on commit dfa9062

Please sign in to comment.