2012-01-14 22:50:37 -08:00
|
|
|
|
using System.Web.Mvc;
|
2011-11-08 09:48:34 -08:00
|
|
|
|
using NzbDrone.Common;
|
|
|
|
|
using NzbDrone.Web.Models;
|
2011-01-28 22:10:22 -08:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class SharedController : Controller
|
|
|
|
|
{
|
2011-11-08 09:48:34 -08:00
|
|
|
|
private readonly EnviromentProvider _enviromentProvider;
|
2011-02-09 22:51:04 -08:00
|
|
|
|
|
2012-01-14 22:50:37 -08:00
|
|
|
|
public SharedController(EnviromentProvider enviromentProvider)
|
2011-02-09 22:51:04 -08:00
|
|
|
|
{
|
2011-11-08 09:48:34 -08:00
|
|
|
|
_enviromentProvider = enviromentProvider;
|
2011-02-09 22:51:04 -08:00
|
|
|
|
}
|
2011-01-28 22:10:22 -08:00
|
|
|
|
|
|
|
|
|
public ActionResult Index()
|
|
|
|
|
{
|
|
|
|
|
return RedirectToAction("Index", "Series");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[ChildActionOnly]
|
2012-01-14 22:50:37 -08:00
|
|
|
|
[OutputCache(Duration = 3600)]
|
2011-01-28 22:10:22 -08:00
|
|
|
|
public ActionResult Footer()
|
|
|
|
|
{
|
2011-11-08 09:48:34 -08:00
|
|
|
|
return PartialView(new FooterModel { BuildTime = _enviromentProvider.BuildDateTime, Version = _enviromentProvider.Version });
|
2011-01-28 22:10:22 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-04-09 19:44:01 -07:00
|
|
|
|
}
|