mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-22 14:33:30 -07:00
Add list exclusion on artist delete
This commit is contained in:
parent
36aab41cf5
commit
7fdec50ef5
2 changed files with 3 additions and 2 deletions
|
@ -95,9 +95,9 @@ namespace Lidarr.Api.V1.Artist
|
|||
[HttpDelete]
|
||||
public object DeleteArtist([FromBody] ArtistEditorResource resource)
|
||||
{
|
||||
_artistService.DeleteArtists(resource.ArtistIds, resource.DeleteFiles);
|
||||
_artistService.DeleteArtists(resource.ArtistIds, resource.DeleteFiles, resource.AddImportListExclusion);
|
||||
|
||||
return new object();
|
||||
return new { };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,5 +15,6 @@ namespace Lidarr.Api.V1.Artist
|
|||
public ApplyTags ApplyTags { get; set; }
|
||||
public bool MoveFiles { get; set; }
|
||||
public bool DeleteFiles { get; set; }
|
||||
public bool AddImportListExclusion { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue