mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 10:36:54 -07:00
approve tv shows or movies
separate checkboxes in the settings screen separating out the approval by tv or movie.
This commit is contained in:
parent
faf21fc0ec
commit
673f3416e0
5 changed files with 26 additions and 8 deletions
|
@ -32,7 +32,8 @@ namespace PlexRequests.Core.SettingModels
|
|||
|
||||
public bool SearchForMovies { get; set; }
|
||||
public bool SearchForTvShows { get; set; }
|
||||
public bool RequireApproval { get; set; }
|
||||
public bool RequireMovieApproval { get; set; }
|
||||
public bool RequireTvShowApproval { get; set; }
|
||||
public int WeeklyRequestLimit { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -62,7 +62,8 @@ namespace PlexRequests.Core
|
|||
{
|
||||
var defaultSettings = new PlexRequestSettings
|
||||
{
|
||||
RequireApproval = true,
|
||||
RequireTvShowApproval = true,
|
||||
RequireMovieApproval = true,
|
||||
SearchForMovies = true,
|
||||
SearchForTvShows = true,
|
||||
WeeklyRequestLimit = 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue