Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/21ee835551a9dcfb0fa0b71a78b9284f67e8d2bc/Jellyfin.Api/Models/UserDtos/ForgotPasswordPinDto.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Jellyfin.Api/Models/UserDtos/ForgotPasswordPinDto.cs

16 lines
367 B

using System.ComponentModel.DataAnnotations;
namespace Jellyfin.Api.Models.UserDtos;
/// <summary>
/// Forgot Password Pin enter request body DTO.
/// </summary>
public class ForgotPasswordPinDto
{
/// <summary>
/// Gets or sets the entered pin to have the password reset.
/// </summary>
[Required]
public required string Pin { get; set; }
}