mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 16:32:56 +01:00
35 lines
780 B
C#
35 lines
780 B
C#
using System.Web.Mvc;
|
|
using NzbDrone.Core.Instrumentation;
|
|
using NzbDrone.Web.Models;
|
|
using Telerik.Web.Mvc;
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
{
|
|
public class LogController : Controller
|
|
{
|
|
private readonly LogProvider _logProvider;
|
|
|
|
public LogController(LogProvider logProvider)
|
|
{
|
|
_logProvider = logProvider;
|
|
}
|
|
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public JsonResult Clear()
|
|
{
|
|
_logProvider.DeleteAll();
|
|
|
|
return Json(new NotificationResult() { Title = "Logs Cleared" });
|
|
}
|
|
|
|
[GridAction]
|
|
public ActionResult AjaxBinding()
|
|
{
|
|
return View(new GridModel(_logProvider.GetAllLogs()));
|
|
}
|
|
}
|
|
} |