Add "Allowed Tags" to Parental Controls

This commit is contained in:
Jpuc1143
2023-01-19 23:28:52 -03:00
parent 23ddeeda4c
commit 7fa6d4c81e
8 changed files with 40 additions and 1 deletions

View File

@@ -35,6 +35,7 @@ namespace MediaBrowser.Model.Users
EnableSharedDeviceControl = true;
BlockedTags = Array.Empty<string>();
AllowedTags = Array.Empty<string>();
BlockUnratedItems = Array.Empty<UnratedItem>();
EnableUserPreferenceAccess = true;
@@ -86,6 +87,8 @@ namespace MediaBrowser.Model.Users
public string[] BlockedTags { get; set; }
public string[] AllowedTags { get; set; }
public bool EnableUserPreferenceAccess { get; set; }
public AccessSchedule[] AccessSchedules { get; set; }