1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-24 22:36:19 -04:00

Remove not implemented endpoints from API docs

This commit is contained in:
Bogdan
2023-05-30 21:20:39 +03:00
committed by Mark McDowall
parent 82919a8ed1
commit 0a05781aca
9 changed files with 44 additions and 360 deletions
@@ -30,6 +30,12 @@ namespace Sonarr.Api.V3.Queue
_broadcastDebounce = new Debouncer(BroadcastChange, TimeSpan.FromSeconds(5));
}
[NonAction]
public override ActionResult<QueueStatusResource> GetResourceByIdWithErrorHandler(int id)
{
return base.GetResourceByIdWithErrorHandler(id);
}
protected override QueueStatusResource GetResourceById(int id)
{
throw new NotImplementedException();