2011-04-20 04:20:20 +03:00
|
|
|
using System;
|
|
|
|
using System.Web.Mvc;
|
2011-11-08 20:48:34 +03:00
|
|
|
using NzbDrone.Common;
|
2011-12-02 04:33:17 +03:00
|
|
|
using NzbDrone.Core.Jobs;
|
2011-02-10 08:51:04 +02:00
|
|
|
using NzbDrone.Core.Providers;
|
2011-11-08 20:48:34 +03:00
|
|
|
using NzbDrone.Web.Models;
|
2011-01-29 08:10:22 +02:00
|
|
|
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
|
|
{
|
|
|
|
public class SharedController : Controller
|
|
|
|
{
|
2011-11-08 20:48:34 +03:00
|
|
|
private readonly EnviromentProvider _enviromentProvider;
|
2011-02-10 08:51:04 +02:00
|
|
|
|
2011-11-08 20:48:34 +03:00
|
|
|
public SharedController(JobProvider jobProvider, EnviromentProvider enviromentProvider)
|
2011-02-10 08:51:04 +02:00
|
|
|
{
|
2011-11-08 20:48:34 +03:00
|
|
|
_enviromentProvider = enviromentProvider;
|
2011-02-10 08:51:04 +02:00
|
|
|
}
|
2011-01-29 08:10:22 +02:00
|
|
|
|
|
|
|
public ActionResult Index()
|
|
|
|
{
|
|
|
|
return RedirectToAction("Index", "Series");
|
|
|
|
}
|
|
|
|
|
|
|
|
[ChildActionOnly]
|
|
|
|
public ActionResult Footer()
|
|
|
|
{
|
2011-11-08 20:48:34 +03:00
|
|
|
|
|
|
|
return PartialView(new FooterModel { BuildTime = _enviromentProvider.BuildDateTime, Version = _enviromentProvider.Version });
|
2011-01-29 08:10:22 +02:00
|
|
|
}
|
|
|
|
}
|
2011-04-10 05:44:01 +03:00
|
|
|
}
|