1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-28 10:48:46 +00:00
Sonarr/NzbDrone.Web/Controllers/HealthController.cs

16 lines
311 B
C#
Raw Normal View History

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