diff options
| author | Niels van Velzen <nielsvanvelzen@users.noreply.github.com> | 2025-11-27 16:31:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-27 16:31:05 +0100 |
| commit | 19c232809ed3b2f0a740239a863b66bebe41e32f (patch) | |
| tree | 2d349a8b7c408b9cf6b102d7af61b19c8393a623 /MediaBrowser.Model/Dto/UserDto.cs | |
| parent | 301f65af483d349bcbc76866a5e6ad17588dbd76 (diff) | |
| parent | d43db230fa1ff6f371a9ab16063152f5b632e2e9 (diff) | |
Merge pull request #14950 from nielsvanvelzen/security-remove-has-password
Deprecate HasPassword property on UserDto
Diffstat (limited to 'MediaBrowser.Model/Dto/UserDto.cs')
| -rw-r--r-- | MediaBrowser.Model/Dto/UserDto.cs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Dto/UserDto.cs b/MediaBrowser.Model/Dto/UserDto.cs index 05019741e..c6b4a4d14 100644 --- a/MediaBrowser.Model/Dto/UserDto.cs +++ b/MediaBrowser.Model/Dto/UserDto.cs @@ -1,5 +1,6 @@ #nullable disable using System; +using System.ComponentModel; using MediaBrowser.Model.Configuration; using MediaBrowser.Model.Users; @@ -54,20 +55,22 @@ namespace MediaBrowser.Model.Dto /// Gets or sets a value indicating whether this instance has password. /// </summary> /// <value><c>true</c> if this instance has password; otherwise, <c>false</c>.</value> - public bool HasPassword { get; set; } + [Obsolete("This information is no longer provided")] + public bool? HasPassword { get; set; } = true; /// <summary> /// Gets or sets a value indicating whether this instance has configured password. /// </summary> /// <value><c>true</c> if this instance has configured password; otherwise, <c>false</c>.</value> - public bool HasConfiguredPassword { get; set; } + [Obsolete("This is always true")] + public bool? HasConfiguredPassword { get; set; } = true; /// <summary> /// Gets or sets a value indicating whether this instance has configured easy password. /// </summary> /// <value><c>true</c> if this instance has configured easy password; otherwise, <c>false</c>.</value> [Obsolete("Easy Password has been replaced with Quick Connect")] - public bool HasConfiguredEasyPassword { get; set; } + public bool? HasConfiguredEasyPassword { get; set; } = false; /// <summary> /// Gets or sets whether async login is enabled or not. |
