1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-27 10:19:41 +00:00
Radarr/NzbDrone.Services/NzbDrone.Services.Service/Controllers/ExceptionController.cs
2012-04-22 16:14:02 -07:00

23 lines
No EOL
398 B
C#

using System.Linq;
using System.Web.Mvc;
namespace NzbDrone.Services.Service.Controllers
{
public class ExceptionController : Controller
{
[HttpPost]
public EmptyResult ReportExisting()
{
return new EmptyResult();
}
[HttpPost]
public JsonResult ReportNew()
{
return new JsonResult();
}
}
}