Skip to content

Commit

Permalink
[#95] add : 모임의 정보중 모임 소개 데이터 필드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yeseul106 committed Dec 8, 2023
1 parent bb99078 commit b3b1ab0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ class PostV1GetPostResponseMeetingDto {
@IsNotEmpty()
@IsString()
category: string;

/** 모임 소개 */
@IsNotEmpty()
@IsString()
desc: string;
}

export class PostV1GetPostResponseDto {
Expand Down
1 change: 1 addition & 0 deletions server/src/post/v1/post-v1.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit b3b1ab0

Please sign in to comment.