Skip to content

Commit b546a5e

Browse files
committed
🐛 fix: password validation @notblank로 변경
1 parent f623dda commit b546a5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/main/java/io/f1/backend/domain/game/dto/request/RoomCreateRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ public record RoomCreateRequest(
1111
@Min(value = 2, message = "방 인원 수는 최소 2명입니다.")
1212
@Max(value = 8, message = "방 인원 수는 최대 8명 입니다.")
1313
Integer maxUserCount,
14-
@NotNull String password,
14+
@NotBlank String password,
1515
@NotNull Boolean locked) {}

0 commit comments

Comments
 (0)