1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-15 00:21:42 +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 15:59:48 -07:00
MvcMiniProfiler.MiniProfiler.Stop(true);
return Json("OK", JsonRequestBehavior.AllowGet);
}
}
}