From 7a3a9fb7e470c80b5ca1aecdb7da9c2f0fe6d8ce Mon Sep 17 00:00:00 2001 From: Niels van Velzen Date: Mon, 19 Dec 2022 21:44:54 +0100 Subject: [PATCH] Remove deprecated Password field from AuthenticateUserByName --- Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs b/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs index 41f7b169eb..31208264fb 100644 --- a/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs +++ b/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs @@ -1,6 +1,4 @@ -using System; - -namespace Jellyfin.Api.Models.UserDtos +namespace Jellyfin.Api.Models.UserDtos { /// /// The authenticate user by name request body. @@ -16,11 +14,5 @@ namespace Jellyfin.Api.Models.UserDtos /// Gets or sets the plain text password. /// public string? Pw { get; set; } - - /// - /// Gets or sets the sha1-hashed password. - /// - [Obsolete("Send password using pw field")] - public string? Password { get; set; } } }