Lidarr/NzbDrone.Web/Controllers/HealthController.cs

17 lines
326 B
C#
Raw Normal View History

using System.Web.Mvc;
2012-07-27 21:31:33 +00:00
using StackExchange.Profiling;
namespace NzbDrone.Web.Controllers
{
public class HealthController : Controller
{
[HttpGet]
public JsonResult Index()
{
2012-07-27 21:31:33 +00:00
MiniProfiler.Stop(true);
return Json("OK", JsonRequestBehavior.AllowGet);
}
}
}