Merge branch '39-kind-name-on-device-does-not-match-route-name' into 'dev'
fixed route names Closes #39 See merge request sa4-2020/the-sanmarinoes/backend!51
This commit is contained in:
commit
1c8c4b61d9
6 changed files with 6 additions and 6 deletions
|
@ -13,7 +13,7 @@ public class ButtonDimmer extends Dimmer {
|
|||
private static final int DIM_INCREMENT = 10;
|
||||
|
||||
public ButtonDimmer() {
|
||||
super("button-dimmer");
|
||||
super("buttonDimmer");
|
||||
}
|
||||
|
||||
/** Increases the current intensity level of the dimmable light by DIM_INCREMENT */
|
||||
|
|
|
@ -21,7 +21,7 @@ public class DimmableLight extends Switchable {
|
|||
Connector.basic(KnobDimmer::getOutputs, DimmableLight::setDimmerId);
|
||||
|
||||
public DimmableLight() {
|
||||
super("light");
|
||||
super("dimmableLight");
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
|
|
|
@ -10,7 +10,7 @@ import javax.persistence.Entity;
|
|||
public class KnobDimmer extends Dimmer {
|
||||
|
||||
public KnobDimmer() {
|
||||
super("knob-dimmer");
|
||||
super("knobDimmer");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -19,6 +19,6 @@ public class MotionSensor extends InputDevice {
|
|||
}
|
||||
|
||||
public MotionSensor() {
|
||||
super("motion-sensor");
|
||||
super("motionSensor");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ public class RegularLight extends Switchable {
|
|||
boolean on;
|
||||
|
||||
public RegularLight() {
|
||||
super("regular-light");
|
||||
super("regularLight");
|
||||
this.on = false;
|
||||
}
|
||||
|
||||
|
|
|
@ -42,6 +42,6 @@ public class SmartPlug extends Switchable {
|
|||
}
|
||||
|
||||
public SmartPlug() {
|
||||
super("smart-plug");
|
||||
super("smartPlug");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue