diff --git a/src/Radarr.Api.V3/Profiles/Delay/DelayProfileController.cs b/src/Radarr.Api.V3/Profiles/Delay/DelayProfileController.cs index 4de0e7efb..cd472e1d7 100644 --- a/src/Radarr.Api.V3/Profiles/Delay/DelayProfileController.cs +++ b/src/Radarr.Api.V3/Profiles/Delay/DelayProfileController.cs @@ -71,5 +71,13 @@ namespace Radarr.Api.V3.Profiles.Delay { return _delayProfileService.All().ToResource(); } + + [HttpPut("reorder/{id}")] + public List Reorder([FromRoute] int id, [FromQuery] int? after) + { + ValidateId(id); + + return _delayProfileService.Reorder(id, after).ToResource(); + } } }