Skip to content

Commit

Permalink
#493 [feat] remove dto blank validation
Browse files Browse the repository at this point in the history
#493 [feat] remove dto blank validation
  • Loading branch information
sohyundoh authored Aug 17, 2024
2 parents d620a10 + c392211 commit 0c19a44
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package com.mile.writername.service.dto;

import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.Size;

public record WriterNameDescriptionUpdateRequest(
@NotBlank(message = "소개 글이 입력되지 않았습니다.")

@Size(max = 110, message = "소개 글은 최대 110자 이내로 작성해주세요.")
String description
) {
Expand Down

0 comments on commit 0c19a44

Please sign in to comment.