mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
System/Indexers moved to DataTables
This commit is contained in:
parent
185edfb7f7
commit
f21f3517cf
3 changed files with 48 additions and 37 deletions
|
@ -65,7 +65,10 @@ namespace NzbDrone.Web.Controllers
|
|||
|
||||
public ActionResult Indexers()
|
||||
{
|
||||
return View(_indexerProvider.All());
|
||||
var indexers = _indexerProvider.All();
|
||||
var serialized = new JavaScriptSerializer().Serialize(indexers);
|
||||
|
||||
return View((object)serialized);
|
||||
}
|
||||
|
||||
public ActionResult Config()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue