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]
[Produces("application/json")]
public void DeleteProfile(int id)
public object DeleteProfile(int id)
{
_profileService.Delete(id);
return new { };
}
[RestPutById]

Loading…
Cancel
Save