From 5c615fa02448813499ed87f2a1c2b937c7a7dcd5 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 14 Sep 2014 11:10:51 -0400 Subject: add connect linking --- MediaBrowser.Model/Configuration/UserConfiguration.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'MediaBrowser.Model/Configuration/UserConfiguration.cs') diff --git a/MediaBrowser.Model/Configuration/UserConfiguration.cs b/MediaBrowser.Model/Configuration/UserConfiguration.cs index b48018c9a..3f25ba656 100644 --- a/MediaBrowser.Model/Configuration/UserConfiguration.cs +++ b/MediaBrowser.Model/Configuration/UserConfiguration.cs @@ -78,14 +78,15 @@ namespace MediaBrowser.Model.Configuration public bool EnableLocalPassword { get; set; } public string[] OrderedViews { get; set; } - + + public bool SyncConnectName { get; set; } + public bool SyncConnectImage { get; set; } + /// /// Initializes a new instance of the class. /// public UserConfiguration() { - IsAdministrator = true; - PlayDefaultAudioTrack = true; EnableRemoteControlOfOtherUsers = true; EnableLiveTvManagement = true; @@ -101,6 +102,9 @@ namespace MediaBrowser.Model.Configuration ExcludeFoldersFromGrouping = new string[] { }; DisplayCollectionsView = true; DisplayFoldersView = true; + + SyncConnectName = true; + SyncConnectImage = true; } } } -- cgit v1.2.3