fix min intensity of dimmabke light of 1 in Dimmable Save Request
This commit is contained in:
parent
9fc0224b1d
commit
6ce44e73ff
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue