mirror of
https://github.com/Radarr/Radarr
synced 2026-01-04 14:42:26 +01:00
Add forceSave to the OpenAPI docs
(cherry picked from commit ef0b91b45bc7f1295efb03dc44630f1442e18be1) Fixes #8538
This commit is contained in:
parent
112550399b
commit
19a1f97be8
1 changed files with 1 additions and 3 deletions
|
|
@ -6,7 +6,6 @@
|
|||
using NzbDrone.Common.Serializer;
|
||||
using NzbDrone.Core.ThingiProvider;
|
||||
using NzbDrone.Core.Validation;
|
||||
using Radarr.Http.Extensions;
|
||||
using Radarr.Http.REST;
|
||||
using Radarr.Http.REST.Attributes;
|
||||
|
||||
|
|
@ -74,10 +73,9 @@ public ActionResult<TProviderResource> CreateProvider(TProviderResource provider
|
|||
}
|
||||
|
||||
[RestPutById]
|
||||
public ActionResult<TProviderResource> UpdateProvider(TProviderResource providerResource)
|
||||
public ActionResult<TProviderResource> UpdateProvider([FromBody] TProviderResource providerResource, [FromQuery] bool forceSave = false)
|
||||
{
|
||||
var providerDefinition = GetDefinition(providerResource, true, false, false);
|
||||
var forceSave = Request.GetBooleanQueryParameter("forceSave");
|
||||
|
||||
// Only test existing definitions if it is enabled and forceSave isn't set.
|
||||
if (providerDefinition.Enable && !forceSave)
|
||||
|
|
|
|||
Loading…
Reference in a new issue