dashboard: fix a request mapping issue of removing machines api (#559)
This commit is contained in:
parent
775484ba61
commit
c7f3fd874c
|
|
@ -77,7 +77,7 @@ public class AppController {
|
|||
return Result.ofSuccess(MachineInfoVo.fromMachineInfoList(list));
|
||||
}
|
||||
|
||||
@GetMapping(value = "/{app}/machine/remove.json")
|
||||
@RequestMapping(value = "/{app}/machine/remove.json")
|
||||
public Result<String> removeMachineById(
|
||||
@PathVariable("app") String app,
|
||||
@RequestParam(name = "ip") String ip,
|
||||
|
|
|
|||
Loading…
Reference in New Issue