Skip to content

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
v2.0.1
  • Loading branch information
mikekks authored Aug 31, 2024
2 parents 70d7a62 + 1a2690a commit 5fa27b4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@
@AllArgsConstructor
@Schema(description = "모임 지원 request body dto")
public class MeetingV2ApplyMeetingDto {
@Schema(example = "4", required = true, description = "모임 ID")
@NotNull
private Integer meetingId;
@Schema(example = "4", required = true, description = "모임 ID")
@NotNull
private Integer meetingId;

@Schema(example = "꼭 지원하고 싶습니다.", description = "지원 각오")
@NotNull
private String content;
@Schema(example = "꼭 지원하고 싶습니다.", description = "지원 각오")
private String content;

}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ public class PostV2CreatePostBodyDto {
required = true,
description = "게시글 이미지 리스트"
)
@NotEmpty
private String[] images;

@Schema(example = "api 가 터졌다고? 깃이 터졌다고?", required = true, description = "게시글 내용")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@
@Schema(description = "게시물 수정 request body dto")
public class PostV2UpdatePostBodyDto {

@Schema(description = "모임 게시글 제목", example = "알고보면 쓸데있는 개발 프로세스")
@NotNull
private final String title;
@Schema(description = "모임 게시글 제목", example = "알고보면 쓸데있는 개발 프로세스")
@NotNull
private final String title;

@Schema(description = "모임 게시글 내용", example = "api가 터졌다고 ? 깃이 터졌다고?")
@NotNull
private final String contents;
@Schema(description = "모임 게시글 내용", example = "api가 터졌다고 ? 깃이 터졌다고?")
@NotNull
private final String contents;

@Schema(description = "모임 게시글 이미지 리스트", example = "[\"url1\", \"url2\"]")
@NotNull
private final String[] images;
@Schema(description = "모임 게시글 이미지 리스트", example = "[\"url1\", \"url2\"]")
private final String[] images;
}

0 comments on commit 5fa27b4

Please sign in to comment.