diff options
| author | Michalis Adamidis <gsnerf@gsnerf.de> | 2014-09-14 18:00:44 +0200 |
|---|---|---|
| committer | Michalis Adamidis <gsnerf@gsnerf.de> | 2014-09-14 18:00:44 +0200 |
| commit | 411a0531e0a71b2d458b5b3a8a9951ca763ca09a (patch) | |
| tree | 871614a2cab9da0aa95d1d1f9f350d80fcf56271 /MediaBrowser.Model/Configuration/UserConfiguration.cs | |
| parent | 4f3ea6c6c3cdde7f4b8d21dc97c711635d73b4e0 (diff) | |
| parent | 6a177d21478774b3ea1a5adc606935bb3aff65bf (diff) | |
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Model/Configuration/UserConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/UserConfiguration.cs | 10 |
1 files changed, 7 insertions, 3 deletions
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; } + /// <summary> /// Initializes a new instance of the <see cref="UserConfiguration" /> class. /// </summary> 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; } } } |
