1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-12 22:12:38 +01:00
Radarr/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();
}
}
}