mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
28 lines
770 B
C#
28 lines
770 B
C#
using System.Web.Mvc;
|
|
using NzbDrone.Core.Providers;
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
{
|
|
public class SharedController : Controller
|
|
{
|
|
private readonly TimerProvider _timerProvider;
|
|
|
|
public SharedController(TimerProvider 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();
|
|
}
|
|
}
|
|
} |