1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-06 08:07:20 +02:00
Radarr/NzbDrone.Web/Controllers/HealthController.cs

17 lines
326 B
C#
Raw Normal View History

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