mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-22 06:50:32 -04:00
* Implemented forgot password flow. Fixed a bug in manage user where admins were showing the Sharing With section. * Cleaned up the reset password flow. * Reverted some debug code * Fixed an issue with invites due to ImmutableArray not being set.
8 lines
171 B
C#
8 lines
171 B
C#
namespace API.DTOs.Email;
|
|
|
|
public class PasswordResetEmailDto
|
|
{
|
|
public string EmailAddress { get; init; }
|
|
public string ServerConfirmationLink { get; init; }
|
|
}
|