Fix app settings delete modal not closing and reloading app profiles

This commit is contained in:
nitsua 2022-03-21 10:58:08 -04:00 committed by ta264
parent 77caaa2a55
commit e0da422b0e

View file

@ -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]