Skip to content

Commit

Permalink
refactor: dto 유효성 검사 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hyxklee committed Nov 19, 2024
1 parent b19abcf commit 7c4b654
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

public record FileSaveRequest(
@NotBlank String fileName,
@URL String fileUrl
@NotBlank @URL String fileUrl
) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
public record FileUpdateRequest(
@NotBlank Long fileId,
@NotBlank String fileName,
@URL String fileUrl
@NotBlank @URL String fileUrl
) {
}

0 comments on commit 7c4b654

Please sign in to comment.