You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
724 B
34 lines
724 B
using System.Web.Mvc;
|
|
using NzbDrone.Core.Instrumentation;
|
|
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 ActionResult Clear()
|
|
{
|
|
_logProvider.DeleteAll();
|
|
return RedirectToAction("Index");
|
|
}
|
|
|
|
[GridAction]
|
|
public ActionResult _AjaxBinding()
|
|
{
|
|
return View(new GridModel(_logProvider.GetAllLogs()));
|
|
}
|
|
}
|
|
} |