Skip to content

Commit

Permalink
Merge pull request #187 from YogitTeam/feat/report
Browse files Browse the repository at this point in the history
#9 fix: clipboard생성, 수정-req content 길이500제한으로 수정
  • Loading branch information
xhaktmchl authored Apr 6, 2023
2 parents 4076daf + 09ec538 commit a5081d2
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 @@ -28,7 +28,7 @@ public class CreateClipBoardReq {
@ApiModelProperty(example = "경복궁역 몇 번 출구인가요?")
@ApiParam(value = "클립보드 상세 내용", required = false)
@NotBlank
@Size(max = 1000)
@Size(max = 501)
private String content;

@ApiModelProperty(example = "reb5085c395164587b84ac583d023011f.0.sryrq.IDLsECw-rsTozfsX0Yz-CA")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class PatchClipBoardReq {
@ApiModelProperty(example = "경복궁역 몇 번 출구인가요?")
@ApiParam(value = "클립보드 상세 내용", required = true)
@NotBlank
@Size(max = 1001)
@Size(max = 501)
private String content;

@ApiModelProperty(example = "reb5085c395164587b84ac583d023011f.0.sryrq.IDLsECw-rsTozfsX0Yz-CA")
Expand Down

0 comments on commit a5081d2

Please sign in to comment.