This commit is contained in:
omenem 2020-05-27 18:20:00 +02:00
parent d62fe005a8
commit 71302933e6
2 changed files with 2 additions and 6 deletions

View file

@ -64,8 +64,8 @@ public class SensorController {
@PutMapping("/{id}/simulation")
public Sensor updateSimulation(
@PathVariable("id") Long sensorId,
@RequestParam("error") BigDecimal error,
@RequestParam("typical") BigDecimal typical,
@RequestBody BigDecimal error,
@RequestBody BigDecimal typical,
final Principal principal)
throws NotFoundException {
return sensorService.updateSimulationFromSensor(

View file

@ -20,10 +20,6 @@ public class SensorSaveRequest {
@NotNull private BigDecimal value;
private BigDecimal error;
private BigDecimal typical;
/**
* The room this device belongs in, as a foreign key id. To use when updating and inserting from
* a REST call.