mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-08 12:43:19 +02:00
Fix app settings delete modal not closing and reloading app profiles
This commit is contained in:
parent
77caaa2a55
commit
e0da422b0e
1 changed files with 2 additions and 1 deletions
|
|
@ -30,9 +30,10 @@ public ActionResult<AppProfileResource> Create(AppProfileResource resource)
|
|||
|
||||
[RestDeleteById]
|
||||
[Produces("application/json")]
|
||||
public void DeleteProfile(int id)
|
||||
public object DeleteProfile(int id)
|
||||
{
|
||||
_profileService.Delete(id);
|
||||
return new { };
|
||||
}
|
||||
|
||||
[RestPutById]
|
||||
|
|
|
|||
Loading…
Reference in a new issue