Fix app settings delete modal not closing and reloading app profiles

pull/901/head
nitsua 3 years ago committed by ta264
parent 77caaa2a55
commit e0da422b0e

@ -30,9 +30,10 @@ namespace Prowlarr.Api.V1.Profiles.App
[RestDeleteById] [RestDeleteById]
[Produces("application/json")] [Produces("application/json")]
public void DeleteProfile(int id) public object DeleteProfile(int id)
{ {
_profileService.Delete(id); _profileService.Delete(id);
return new { };
} }
[RestPutById] [RestPutById]

Loading…
Cancel
Save