mirror of https://github.com/Sonarr/Sonarr
27 lines
518 B
C#
27 lines
518 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using NzbDrone.Core.Providers.Jobs;
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
{
|
|
public class TimersController : Controller
|
|
{
|
|
private readonly JobProvider _jobProvider;
|
|
|
|
public TimersController(JobProvider jobProvider)
|
|
{
|
|
_jobProvider = jobProvider;
|
|
}
|
|
|
|
public ActionResult Index()
|
|
{
|
|
return View(_jobProvider.All());
|
|
}
|
|
|
|
|
|
}
|
|
}
|