Skip to content

Commit

Permalink
#493 [feat] remove dto blank validation
Browse files Browse the repository at this point in the history
  • Loading branch information
sohyundoh committed Aug 17, 2024
1 parent 2c1df8d commit c392211
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 c392211

Please sign in to comment.