mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
0fc75e8907
Countdown now shows a real value from RSS Sync. CentralDispatch updated to start RSSSyncTimer when run.
33 lines
849 B
C#
33 lines
849 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using NzbDrone.Core.Providers;
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
{
|
|
public class SharedController : Controller
|
|
{
|
|
private ITimerProvider _timerProvider;
|
|
|
|
public SharedController(ITimerProvider timerProvider)
|
|
{
|
|
_timerProvider = timerProvider;
|
|
}
|
|
|
|
public ActionResult Index()
|
|
{
|
|
return RedirectToAction("Index", "Series");
|
|
}
|
|
|
|
[ChildActionOnly]
|
|
public ActionResult Footer()
|
|
{
|
|
ViewData["RssTimer"] = _timerProvider.NextRssSyncTime().ToString("yyyyMMddHHmmss");
|
|
//ViewData["RssTimer"] = DateTime.Now.AddMinutes(61).AddSeconds(10).ToString("yyyyMMddHHmmss");
|
|
return PartialView();
|
|
}
|
|
}
|
|
}
|