2012-04-22 15:18:28 -07:00
|
|
|
|
using System.Linq;
|
2012-02-29 18:36:39 -08:00
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Services.Service.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class ExceptionController : Controller
|
|
|
|
|
{
|
2012-02-29 22:38:42 -08:00
|
|
|
|
|
2012-02-29 21:10:56 -08:00
|
|
|
|
[HttpPost]
|
2012-04-22 16:14:02 -07:00
|
|
|
|
public EmptyResult ReportExisting()
|
2012-02-29 21:10:56 -08:00
|
|
|
|
{
|
|
|
|
|
return new EmptyResult();
|
|
|
|
|
}
|
2012-02-29 22:38:42 -08:00
|
|
|
|
|
2012-02-29 18:36:39 -08:00
|
|
|
|
[HttpPost]
|
2012-04-22 16:14:02 -07:00
|
|
|
|
public JsonResult ReportNew()
|
2012-02-29 18:36:39 -08:00
|
|
|
|
{
|
2012-02-29 22:38:42 -08:00
|
|
|
|
return new JsonResult();
|
2012-02-29 18:36:39 -08:00
|
|
|
|
}
|
2012-02-29 22:38:42 -08:00
|
|
|
|
|
2012-04-22 15:18:28 -07:00
|
|
|
|
|
2012-02-29 18:36:39 -08:00
|
|
|
|
}
|
|
|
|
|
}
|