1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-30 23:42:33 +01:00
Sonarr/NzbDrone.Services/NzbDrone.Services.Service/Controllers/ExceptionController.cs
2012-04-22 16:14:02 -07:00

23 lines
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();
}
}
}