Remove not implemented endpoints from API docs

This commit is contained in:
Bogdan
2023-06-21 08:00:04 +03:00
parent c7399cdd2b
commit fcf057a019
6 changed files with 27 additions and 1 deletions
@@ -58,6 +58,11 @@ namespace Readarr.Api.V1.Queue
}
[NonAction]
public override ActionResult<QueueResource> GetResourceByIdWithErrorHandler(int id)
{
return base.GetResourceByIdWithErrorHandler(id);
}
protected override QueueResource GetResourceById(int id)
{
throw new NotImplementedException();