1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-04 10:39:34 +00:00
Sonarr/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-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();
}
[HttpPost]
2012-04-22 16:14:02 -07:00
public JsonResult ReportNew()
{
return new JsonResult();
}
}
}