Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,5 @@ next-env.d.ts

# mcp
mcp.json

.claude
2 changes: 0 additions & 2 deletions apps/web/src/entities/post/model/types/dto/getPostDto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,11 @@ export interface GetPostResponseDto {
fileUrlList: string[];
numComment: number;
numLike: number;
numFavorite: number;
voteId?: string;
isAnonymous: boolean;
isCrawled: boolean;
isOwner: boolean;
isPostLike: boolean;
isPostFavorite: boolean;
updatable: boolean;
deletable: boolean;
isOfficial: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ export type PostResponseDto = Omit<
postId: string;
postImageUrls: string[];
writerNickname: string;
isPostFavorite: boolean;

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

찜하기 기능이 삭제됨에 따라 GetPostResponseDto에서 isPostFavorite 필드가 제거되었습니다. 일관성을 위해 PostResponseDto에서도 isPostFavorite 필드를 제거해야 합니다.

};
Loading