Added in InstallId so that Kavita owned Email service can validate if requests are valid or not. (#1036)
This commit is contained in:
parent
5c7cfb8177
commit
98bb6f0b0b
5 changed files with 18 additions and 2 deletions
|
@ -5,4 +5,8 @@ public class ConfirmationEmailDto
|
|||
public string InvitingUser { get; init; }
|
||||
public string EmailAddress { get; init; }
|
||||
public string ServerConfirmationLink { get; init; }
|
||||
/// <summary>
|
||||
/// InstallId of this Kavita Instance
|
||||
/// </summary>
|
||||
public string InstallId { get; init; }
|
||||
}
|
||||
|
|
|
@ -5,4 +5,8 @@ public class EmailMigrationDto
|
|||
public string EmailAddress { get; init; }
|
||||
public string Username { get; init; }
|
||||
public string ServerConfirmationLink { get; init; }
|
||||
/// <summary>
|
||||
/// InstallId of this Kavita Instance
|
||||
/// </summary>
|
||||
public string InstallId { get; init; }
|
||||
}
|
||||
|
|
|
@ -4,4 +4,8 @@ public class PasswordResetEmailDto
|
|||
{
|
||||
public string EmailAddress { get; init; }
|
||||
public string ServerConfirmationLink { get; init; }
|
||||
/// <summary>
|
||||
/// InstallId of this Kavita Instance
|
||||
/// </summary>
|
||||
public string InstallId { get; init; }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue