Skip to content

Commit

Permalink
#168 [fix] instagramId 공백 허용 정규식 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hellozo0 committed Jan 18, 2024
1 parent c416724 commit fa324a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public record ModelApplicationRequest(
@Size(min = 0, max = 3, message = "hairServiceRecord는 선택사항이며, 3개까지 추가 가능합니다.")
List<ModelHairServiceRequest> hairServiceRecords,
@Schema(description = "모델의 인스타그램 예시입니다.", example ="hizo0")
@Pattern(regexp = "^[^@\\s]*[_\\.]*[^\\s]+$", message = "인스타 그램 아이디에는 @는 들어올 수 없지만 _와 .는 가능합니다.")
@Pattern(regexp = "^([^@\\s]*[_\\.]*[^\\s]*)?$", message = "인스타 그램 아이디에는 @는 들어올 수 없지만 _와 .는 가능합니다.")
String instagramId
) {
public List<ModelHairServiceRequest> getHairServiceRecords() {
Expand Down

0 comments on commit fa324a1

Please sign in to comment.