Lidarr/NzbDrone.Services/NzbDrone.Services.Service/Controllers/ExceptionController.cs

23 lines
398 B
C#
Raw Normal View History

using System.Linq;
using System.Web.Mvc;
namespace NzbDrone.Services.Service.Controllers
{
public class ExceptionController : Controller
{
2012-03-01 05:10:56 +00:00
[HttpPost]
2012-04-22 23:14:02 +00:00
public EmptyResult ReportExisting()
2012-03-01 05:10:56 +00:00
{
return new EmptyResult();
}
[HttpPost]
2012-04-22 23:14:02 +00:00
public JsonResult ReportNew()
{
return new JsonResult();
}
}
}