Implement password recovery feature with reset token and email notifications
All checks were successful
Build And Push Dev Docker Image / docker (push) Successful in 1m28s
All checks were successful
Build And Push Dev Docker Image / docker (push) Successful in 1m28s
This commit is contained in:
@@ -95,6 +95,16 @@ namespace FoodsharingSiegen.Contracts.Entity
|
||||
set => EncryptedPassword = Cryptor.Encrypt(value);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the reset token for password recovery (ab)
|
||||
/// </summary>
|
||||
public string? ResetToken { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the expiry date for the reset token (ab)
|
||||
/// </summary>
|
||||
public DateTime? ResetTokenExpiry { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the value of the type (ab)
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user