From f39cfabd0f7ebb55652b4d76d6cf58a0e8a6adcb Mon Sep 17 00:00:00 2001 From: Tobias Klika Date: Mon, 21 Dec 2020 15:43:33 +0100 Subject: [PATCH] remove user PW reset properties as these will be handled by the token provider --- zero.Core/Entities/User/BackofficeUser.cs | 8 -------- zero.Core/Identity/IIdentityUser.cs | 12 ------------ 2 files changed, 20 deletions(-) diff --git a/zero.Core/Entities/User/BackofficeUser.cs b/zero.Core/Entities/User/BackofficeUser.cs index d2f0b8c0..6ebc0ccb 100644 --- a/zero.Core/Entities/User/BackofficeUser.cs +++ b/zero.Core/Entities/User/BackofficeUser.cs @@ -47,14 +47,6 @@ namespace zero.Core.Entities - /// - public string PasswordResetToken { get; set; } - - /// - public DateTimeOffset? PasswordResetTokenExpirationDate { get; set; } - - - /// public int AccessFailedCount { get; set; } diff --git a/zero.Core/Identity/IIdentityUser.cs b/zero.Core/Identity/IIdentityUser.cs index e89ac258..b45c9ee0 100644 --- a/zero.Core/Identity/IIdentityUser.cs +++ b/zero.Core/Identity/IIdentityUser.cs @@ -47,18 +47,6 @@ namespace zero.Core.Identity - /// - /// A hash which is used to validate a password-change request - /// - string PasswordResetToken { get; set; } - - /// - /// The date when the current password-reset hash expires - /// - DateTimeOffset? PasswordResetTokenExpirationDate { get; set; } - - - /// /// Number of times sign in failed. ///