1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-02 00:42:41 +01: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-28 00:59:48 +02:00
MvcMiniProfiler.MiniProfiler.Stop(true);
return Json("OK", JsonRequestBehavior.AllowGet);
}
}
}