diff options
| author | crobibero <cody@robibe.ro> | 2021-04-21 20:46:15 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2021-04-21 20:46:15 -0600 |
| commit | 5b0dc21c644af074095b760b2e42c516ce07c0d6 (patch) | |
| tree | 131d5a7867dec8fa854fa76b24848652b3020e2a | |
| parent | 95ab603a40b96499e3a3b732f31aacc458ca8a2c (diff) | |
Mark password property as obsolete
| -rw-r--r-- | Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs b/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs index 393627435..41f7b169e 100644 --- a/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs +++ b/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs @@ -1,4 +1,6 @@ -namespace Jellyfin.Api.Models.UserDtos +using System; + +namespace Jellyfin.Api.Models.UserDtos { /// <summary> /// The authenticate user by name request body. @@ -18,6 +20,7 @@ /// <summary> /// Gets or sets the sha1-hashed password. /// </summary> + [Obsolete("Send password using pw field")] public string? Password { get; set; } } } |
