Started to impliment the Plex checker. This will check plex every x minutes to see if there is any new content and then update the avalibility of the requests

This commit is contained in:
Jamie Rees 2016-03-06 01:25:54 +00:00
parent 003dd47e3c
commit 3b0b0c521e
19 changed files with 329 additions and 160 deletions

View file

@ -104,7 +104,7 @@ namespace PlexRequests.UI.Modules
Log.Trace("Getting Settings:");
Log.Trace(settings.DumpJson());
return View["/Settings", settings];
return View["Settings", settings];
}
private Response SaveAdmin()
@ -166,7 +166,7 @@ namespace PlexRequests.UI.Modules
{ return Response.AsJson(string.Empty); }
var usernames = users.User.Select(x => x.Username);
return Response.AsJson(usernames); //TODO usernames are not populated.
return Response.AsJson(usernames);
}
private Negotiator CouchPotato()