2012-04-22 22:18:28 +00:00
|
|
|
|
using System.Linq;
|
2012-03-01 02:36:39 +00:00
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Services.Service.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class ExceptionController : Controller
|
|
|
|
|
{
|
2012-03-01 06:38:42 +00:00
|
|
|
|
|
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();
|
|
|
|
|
}
|
2012-03-01 06:38:42 +00:00
|
|
|
|
|
2012-03-01 02:36:39 +00:00
|
|
|
|
[HttpPost]
|
2012-04-22 23:14:02 +00:00
|
|
|
|
public JsonResult ReportNew()
|
2012-03-01 02:36:39 +00:00
|
|
|
|
{
|
2012-03-01 06:38:42 +00:00
|
|
|
|
return new JsonResult();
|
2012-03-01 02:36:39 +00:00
|
|
|
|
}
|
2012-03-01 06:38:42 +00:00
|
|
|
|
|
2012-04-22 22:18:28 +00:00
|
|
|
|
|
2012-03-01 02:36:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|