fixes #683 - Support disabling playback per user

This commit is contained in:
Luke Pulverenti
2014-01-22 21:19:04 -05:00
parent bd0a1b70d0
commit 4ce43ce019
3 changed files with 20 additions and 0 deletions

View File

@@ -68,6 +68,8 @@ namespace MediaBrowser.Model.Configuration
public bool BlockUnratedBooks { get; set; }
public bool EnableLiveTvManagement { get; set; }
public bool EnableMediaPlayback { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
@@ -79,6 +81,7 @@ namespace MediaBrowser.Model.Configuration
BlockNotRated = false;
EnableLiveTvManagement = true;
EnableMediaPlayback = true;
}
}
}