2012-01-19 05:01:47 +00:00
|
|
|
|
using System.Web.Mvc;
|
2011-05-19 03:57:03 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class HealthController : Controller
|
|
|
|
|
{
|
|
|
|
|
[HttpGet]
|
|
|
|
|
public JsonResult Index()
|
|
|
|
|
{
|
2011-07-27 22:59:48 +00:00
|
|
|
|
MvcMiniProfiler.MiniProfiler.Stop(true);
|
2011-05-19 03:57:03 +00:00
|
|
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|