Skip to content

Commit

Permalink
fix: apply validation @field: for kotlin
Browse files Browse the repository at this point in the history
  • Loading branch information
KimDoubleB committed Aug 6, 2023
1 parent cf1626c commit 732793e
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 @@ -75,7 +75,7 @@ data class MoitJoinRequest(

@Schema(description = "moit 초대 코드")
@field:NotBlank
@Size(min = 6, max = 6)
@field:Size(min = 6, max = 6)
val invitationCode: String,
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ data class StudyDetailsResponse(
data class StudyAttendanceKeywordRequest(
@Schema(description = "Study 참석 코드")
@field:NotBlank
@Size(min = 4, max = 4)
@field:Size(min = 4, max = 4)
val attendanceKeyword: String
)

Expand Down

0 comments on commit 732793e

Please sign in to comment.