diff options
Diffstat (limited to 'MediaBrowser.Model/Configuration/UserConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/UserConfiguration.cs | 39 |
1 files changed, 26 insertions, 13 deletions
diff --git a/MediaBrowser.Model/Configuration/UserConfiguration.cs b/MediaBrowser.Model/Configuration/UserConfiguration.cs index 3f25ba656..9e33c1c36 100644 --- a/MediaBrowser.Model/Configuration/UserConfiguration.cs +++ b/MediaBrowser.Model/Configuration/UserConfiguration.cs @@ -37,22 +37,21 @@ namespace MediaBrowser.Model.Configuration public string SubtitleLanguagePreference { get; set; } /// <summary> - /// Gets or sets a value indicating whether [use forced subtitles only]. - /// </summary> - /// <value><c>true</c> if [use forced subtitles only]; otherwise, <c>false</c>.</value> - public bool UseForcedSubtitlesOnly { get; set; } - - /// <summary> /// Gets or sets a value indicating whether this instance is hidden. /// </summary> /// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value> public bool IsHidden { get; set; } + /// <summary> + /// Gets or sets a value indicating whether this instance is disabled. + /// </summary> + /// <value><c>true</c> if this instance is disabled; otherwise, <c>false</c>.</value> public bool IsDisabled { get; set; } public bool DisplayMissingEpisodes { get; set; } public bool DisplayUnairedEpisodes { get; set; } public bool EnableRemoteControlOfOtherUsers { get; set; } + public bool EnableSharedDeviceControl { get; set; } public bool EnableLiveTvManagement { get; set; } public bool EnableLiveTvAccess { get; set; } @@ -66,7 +65,7 @@ namespace MediaBrowser.Model.Configuration public string[] BlockedChannels { get; set; } public string[] DisplayChannelsWithinViews { get; set; } - + public string[] ExcludeFoldersFromGrouping { get; set; } public UnratedItem[] BlockUnratedItems { get; set; } @@ -79,8 +78,18 @@ namespace MediaBrowser.Model.Configuration public string[] OrderedViews { get; set; } - public bool SyncConnectName { get; set; } - public bool SyncConnectImage { get; set; } + public bool IncludeTrailersInSuggestions { get; set; } + + public bool EnableCinemaMode { get; set; } + + public AccessSchedule[] AccessSchedules { get; set; } + + public bool EnableUserPreferenceAccess { get; set; } + + public string[] LatestItemsExcludes { get; set; } + public string[] BlockedTags { get; set; } + + public bool HasMigratedToPolicy { get; set; } /// <summary> /// Initializes a new instance of the <see cref="UserConfiguration" /> class. @@ -88,23 +97,27 @@ namespace MediaBrowser.Model.Configuration public UserConfiguration() { PlayDefaultAudioTrack = true; - EnableRemoteControlOfOtherUsers = true; EnableLiveTvManagement = true; EnableMediaPlayback = true; EnableLiveTvAccess = true; + EnableSharedDeviceControl = true; + LatestItemsExcludes = new string[] { }; OrderedViews = new string[] { }; BlockedMediaFolders = new string[] { }; DisplayChannelsWithinViews = new string[] { }; + BlockedTags = new string[] { }; BlockedChannels = new string[] { }; BlockUnratedItems = new UnratedItem[] { }; ExcludeFoldersFromGrouping = new string[] { }; DisplayCollectionsView = true; - DisplayFoldersView = true; - SyncConnectName = true; - SyncConnectImage = true; + IncludeTrailersInSuggestions = true; + EnableCinemaMode = true; + EnableUserPreferenceAccess = true; + + AccessSchedules = new AccessSchedule[] { }; } } } |
