From b3b1ab0464b787bc61646d7b7d0383499433f60a Mon Sep 17 00:00:00 2001 From: yeseul106 <20191037@sungshin.ac.kr> Date: Sat, 9 Dec 2023 02:36:44 +0900 Subject: [PATCH] =?UTF-8?q?[#95]=20add=20:=20=EB=AA=A8=EC=9E=84=EC=9D=98?= =?UTF-8?q?=20=EC=A0=95=EB=B3=B4=EC=A4=91=20=EB=AA=A8=EC=9E=84=20=EC=86=8C?= =?UTF-8?q?=EA=B0=9C=20=EB=8D=B0=EC=9D=B4=ED=84=B0=20=ED=95=84=EB=93=9C=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../v1/dto/get-meeting-post/post-v1-get-post-response.dto.ts | 5 +++++ server/src/post/v1/post-v1.service.ts | 1 + 2 files changed, 6 insertions(+) diff --git a/server/src/post/v1/dto/get-meeting-post/post-v1-get-post-response.dto.ts b/server/src/post/v1/dto/get-meeting-post/post-v1-get-post-response.dto.ts index a0028e92..359cea38 100644 --- a/server/src/post/v1/dto/get-meeting-post/post-v1-get-post-response.dto.ts +++ b/server/src/post/v1/dto/get-meeting-post/post-v1-get-post-response.dto.ts @@ -73,6 +73,11 @@ class PostV1GetPostResponseMeetingDto { @IsNotEmpty() @IsString() category: string; + + /** 모임 소개 */ + @IsNotEmpty() + @IsString() + desc: string; } export class PostV1GetPostResponseDto { diff --git a/server/src/post/v1/post-v1.service.ts b/server/src/post/v1/post-v1.service.ts index ccbcf21f..a6bdd092 100644 --- a/server/src/post/v1/post-v1.service.ts +++ b/server/src/post/v1/post-v1.service.ts @@ -174,6 +174,7 @@ export class PostV1Service { title: post.meeting.title, imageURL: post.meeting.imageURL, category: post.meeting.category, + desc: post.meeting.desc, }, viewCount: post.viewCount, likeCount: post.likeCount,