1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-25 09:18:34 +00:00
Sonarr/NzbDrone.Web/Controllers/TimersController.cs
2011-04-19 19:17:28 -07:00

26 lines
534 B
C#

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());
}
}
}