1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Web/Controllers/HealthController.cs

17 lines
326 B
C#
Raw Normal View History

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