fixes #566 - Add permission configuration for remote control

This commit is contained in:
Luke Pulverenti
2013-10-30 11:55:55 -04:00
parent ee912d4113
commit 2f99b2e1e6
2 changed files with 16 additions and 1 deletions

View File

@@ -58,6 +58,7 @@ namespace MediaBrowser.Model.Configuration
public bool DisplayMissingEpisodes { get; set; }
public bool DisplayUnairedEpisodes { get; set; }
public bool EnableRemoteControlOfOtherUsers { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
@@ -65,6 +66,7 @@ namespace MediaBrowser.Model.Configuration
public UserConfiguration()
{
IsAdministrator = true;
EnableRemoteControlOfOtherUsers = true;
BlockNotRated = false;
}
}