fixes #687 - Enable/disable live tv per user

This commit is contained in:
Luke Pulverenti
2014-01-23 16:09:00 -05:00
parent 2977a55b1b
commit 8e7b97db52
7 changed files with 52 additions and 9 deletions

View File

@@ -68,6 +68,7 @@ namespace MediaBrowser.Model.Configuration
public bool BlockUnratedBooks { get; set; }
public bool EnableLiveTvManagement { get; set; }
public bool EnableLiveTvAccess { get; set; }
public bool EnableMediaPlayback { get; set; }
@@ -82,6 +83,7 @@ namespace MediaBrowser.Model.Configuration
EnableLiveTvManagement = true;
EnableMediaPlayback = true;
EnableLiveTvAccess = true;
}
}
}