Skip to content

Commit

Permalink
[COZY-218] feat: 방 생성시 이름 중간 공백 허용
Browse files Browse the repository at this point in the history
  • Loading branch information
eple0329 authored Aug 29, 2024
1 parent e60d5b2 commit 759240f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class RoomCreateRequest {

@NotBlank
@Size(max=12)
@Pattern(regexp = "^[가-힣a-zA-Z0-9]+$", message = "한글, 영어 및 숫자만 입력해주세요. 특수문자는 불가합니다.")
@Pattern(regexp = "^(?!\\s)[가-힣a-zA-Z0-9\\s]+(?<!\\s)$", message = "한글, 영어, 숫자 및 공백만 입력해주세요. 단, 공백은 처음이나 끝에 올 수 없습니다.")
private String name;
@NotNull
@Min(0)
Expand Down

0 comments on commit 759240f

Please sign in to comment.