fix min intensity of dimmabke light of 1 in Dimmable Save Request

This commit is contained in:
omenem 2020-03-25 14:58:56 +01:00
parent 9fc0224b1d
commit 6ce44e73ff

View file

@ -11,7 +11,7 @@ public class DimmableLightSaveRequest {
/** The light intensity value. Goes from 0 (off) to 100 (on) */
@NotNull
@Min(1)
@Min(0)
@Max(100)
private Integer intensity = 0;