approve tv shows or movies

separate checkboxes in the settings screen separating out the approval
by tv or movie.
This commit is contained in:
Drewster727 2016-03-25 17:14:26 -05:00
parent faf21fc0ec
commit 673f3416e0
5 changed files with 26 additions and 8 deletions

View file

@ -218,7 +218,7 @@ namespace PlexRequests.UI.Modules
var settings = PrService.GetSettings();
Log.Trace(settings.DumpJson());
if (!settings.RequireApproval)
if (!settings.RequireMovieApproval)
{
var cpSettings = CpService.GetSettings();
@ -324,7 +324,7 @@ namespace PlexRequests.UI.Modules
model.SeasonList = seasonsList.ToArray();
var settings = PrService.GetSettings();
if (!settings.RequireApproval)
if (!settings.RequireTvShowApproval)
{
var sonarrSettings = SonarrService.GetSettings();
var sender = new TvSender(SonarrApi, SickrageApi);