mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Add list exclusion on artist delete
This commit is contained in:
parent
72267d3cb4
commit
299c84c758
2 changed files with 3 additions and 2 deletions
|
@ -95,9 +95,9 @@ namespace Lidarr.Api.V1.Artist
|
||||||
[HttpDelete]
|
[HttpDelete]
|
||||||
public object DeleteArtist([FromBody] ArtistEditorResource resource)
|
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 ApplyTags ApplyTags { get; set; }
|
||||||
public bool MoveFiles { get; set; }
|
public bool MoveFiles { get; set; }
|
||||||
public bool DeleteFiles { get; set; }
|
public bool DeleteFiles { get; set; }
|
||||||
|
public bool AddImportListExclusion { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue