Skip to content

Commit 314a581

Browse files
committed
🐛 fix: password validation @NotNull로 변경
1 parent b546a5e commit 314a581

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-
@NotBlank String password,
14+
@NotNull String password,
1515
@NotNull Boolean locked) {}

0 commit comments

Comments
 (0)