aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models
diff options
context:
space:
mode:
authorNiels van Velzen <git@ndat.nl>2022-12-19 21:44:54 +0100
committerNiels van Velzen <git@ndat.nl>2022-12-19 21:44:54 +0100
commit7a3a9fb7e470c80b5ca1aecdb7da9c2f0fe6d8ce (patch)
treee8a2697ab869bd91b49af23ef3b0136140cd36ca /Jellyfin.Api/Models
parent760b7f8fca95b580ba3c9b77493c22b84e871eca (diff)
Remove deprecated Password field from AuthenticateUserByName
Diffstat (limited to 'Jellyfin.Api/Models')
-rw-r--r--Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs10
1 files changed, 1 insertions, 9 deletions
diff --git a/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs b/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs
index 41f7b169e..31208264f 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
{
/// <summary>
/// The authenticate user by name request body.
@@ -16,11 +14,5 @@ namespace Jellyfin.Api.Models.UserDtos
/// Gets or sets the plain text password.
/// </summary>
public string? Pw { get; set; }
-
- /// <summary>
- /// Gets or sets the sha1-hashed password.
- /// </summary>
- [Obsolete("Send password using pw field")]
- public string? Password { get; set; }
}
}