Removed the whitelist

This commit is contained in:
Jamie.Rees 2016-12-08 13:50:51 +00:00
commit 121cf90ba7
4 changed files with 3 additions and 43 deletions

View file

@ -302,11 +302,6 @@ namespace PlexRequests.Services.Jobs
public bool ShouldAutoApprove(RequestType requestType, PlexRequestSettings prSettings, List<string> username)
{
if (prSettings.ApprovalWhiteList.Intersect(username).Any())
{
return true;
}
foreach (var user in username)
{
var admin = Security.HasPermissions(user, Permissions.Administrator);