aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2023-05-26 19:40:40 +0200
committercvium <clausvium@gmail.com>2023-05-26 19:40:40 +0200
commit716bcc6410c91edd755ea294f5908b7f383fc326 (patch)
tree37462a054ba2bea4545552bb14f5d3832f00f2be /Jellyfin.Data
parent4a9bcbd626b6e7842902a77d4160fa300e6441f6 (diff)
chore: deprecate EasyPassword as it isn't very secure
Diffstat (limited to 'Jellyfin.Data')
-rw-r--r--Jellyfin.Data/Entities/User.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/Jellyfin.Data/Entities/User.cs b/Jellyfin.Data/Entities/User.cs
index 606e1b542..58ddaaf83 100644
--- a/Jellyfin.Data/Entities/User.cs
+++ b/Jellyfin.Data/Entities/User.cs
@@ -92,16 +92,6 @@ namespace Jellyfin.Data.Entities
public string? Password { get; set; }
/// <summary>
- /// Gets or sets the user's easy password, or <c>null</c> if none is set.
- /// </summary>
- /// <remarks>
- /// Max length = 65535.
- /// </remarks>
- [MaxLength(65535)]
- [StringLength(65535)]
- public string? EasyPassword { get; set; }
-
- /// <summary>
/// Gets or sets a value indicating whether the user must update their password.
/// </summary>
/// <remarks>