diff options
| author | Jpuc1143 <jaime.perez@uc.cl> | 2023-01-19 23:28:52 -0300 |
|---|---|---|
| committer | Jpuc1143 <jaime.perez@uc.cl> | 2023-01-20 16:43:59 -0300 |
| commit | 7fa6d4c81e9d1f22fd67a7cab2d70cba27d89275 (patch) | |
| tree | b52cb31d1f8f927935afd0a2e18d0023eeb0c87e /Jellyfin.Data | |
| parent | 23ddeeda4c8e4720e9fae00dc02f7cb4501312a2 (diff) | |
Add "Allowed Tags" to Parental Controls
Diffstat (limited to 'Jellyfin.Data')
| -rw-r--r-- | Jellyfin.Data/Enums/PreferenceKind.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Jellyfin.Data/Enums/PreferenceKind.cs b/Jellyfin.Data/Enums/PreferenceKind.cs index a54d789af..d2b412e45 100644 --- a/Jellyfin.Data/Enums/PreferenceKind.cs +++ b/Jellyfin.Data/Enums/PreferenceKind.cs @@ -63,6 +63,11 @@ namespace Jellyfin.Data.Enums /// <summary> /// A list of ordered views. /// </summary> - OrderedViews = 11 + OrderedViews = 11, + + /// <summary> + /// A list of allowed tags. + /// </summary> + AllowedTags = 12 } } |
