Timers are now initialized on startup.

This commit is contained in:
kay.one 2011-04-19 19:17:28 -07:00
parent 38712c7e5f
commit 6caae19430
4 changed files with 96 additions and 0 deletions

View file

@ -0,0 +1,26 @@
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());
}
}
}