1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Web/Controllers/TimersController.cs

27 lines
534 B
C#
Raw Normal View History

2011-04-20 04:17:28 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using NzbDrone.Core.Providers.Timers;
namespace NzbDrone.Web.Controllers
{
public class TimersController : Controller
{
private readonly TimerProvider _timerProvider;
public TimersController(TimerProvider timerProvider)
{
_timerProvider = timerProvider;
}
public ActionResult Index()
{
return View(_timerProvider.All());
}
}
}