@ -37,7 +37,7 @@ namespace Radarr.Api.V3.Calendar
}
[NonAction]
protected override MovieResource GetResourceById(int id)
public override ActionResult<MovieResource> GetResourceByIdWithErrorHandler(int id)
{
throw new NotImplementedException();
@ -23,6 +23,11 @@ namespace Radarr.Api.V3.Health
public override ActionResult<HealthResource> GetResourceByIdWithErrorHandler(int id)
return base.GetResourceByIdWithErrorHandler(id);
protected override HealthResource GetResourceById(int id)
@ -17,6 +17,11 @@ namespace Radarr.Api.V3.Indexers
public override ActionResult<ReleaseResource> GetResourceByIdWithErrorHandler(int id)
protected override ReleaseResource GetResourceById(int id)
@ -18,6 +18,11 @@ namespace Radarr.Api.V3.Movies
@ -39,6 +39,11 @@ namespace Radarr.Api.V3.Movies
@ -60,6 +60,11 @@ namespace Radarr.Api.V3.Queue
public override ActionResult<QueueResource> GetResourceByIdWithErrorHandler(int id)
protected override QueueResource GetResourceById(int id)
@ -27,6 +27,11 @@ namespace Radarr.Api.V3.Queue
@ -31,6 +31,11 @@ namespace Radarr.Api.V3.Queue
public override ActionResult<QueueStatusResource> GetResourceByIdWithErrorHandler(int id)
protected override QueueStatusResource GetResourceById(int id)
@ -33,7 +33,7 @@ namespace Radarr.Api.V3.Wanted
@ -29,7 +29,7 @@ namespace Radarr.Api.V3.Wanted
@ -40,7 +40,7 @@ namespace Radarr.Http.REST
[RestGetById]
public ActionResult<TResource> GetResourceByIdWithErrorHandler(int id)
public virtual ActionResult<TResource> GetResourceByIdWithErrorHandler(int id)
try