mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-12 11:15:43 +02:00
35 lines
797 B
C#
35 lines
797 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
using System.Web.Mvc;
|
||
|
using NzbDrone.Core.Providers;
|
||
|
using NzbDrone.Core.Providers.Jobs;
|
||
|
|
||
|
namespace NzbDrone.Web.Controllers
|
||
|
{
|
||
|
public class SystemController : Controller
|
||
|
{
|
||
|
private readonly JobProvider _jobProvider;
|
||
|
private readonly IndexerProvider _indexerProvider;
|
||
|
|
||
|
public SystemController(JobProvider jobProvider, IndexerProvider indexerProvider)
|
||
|
{
|
||
|
_jobProvider = jobProvider;
|
||
|
_indexerProvider = indexerProvider;
|
||
|
}
|
||
|
|
||
|
public ActionResult Jobs()
|
||
|
{
|
||
|
return View(_jobProvider.All());
|
||
|
}
|
||
|
|
||
|
public ActionResult Indexers()
|
||
|
{
|
||
|
return View(_indexerProvider.All());
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|