fix: dto에 전체 페이지 수, 유저 프로필과 작성일자 포함하도록 구현 #22
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🚀 PR 요약
dto 구조 변경
✨ PR 상세 내용
{ "code": 200, "message": "게시물 조회에 성공했습니다", "data": { "post": [ { "postId": "7f8f716f-de8f-4c14-9092-3cdd707b449b", "title": "블로그 게시물 제목5", "contents": [ { "contentOrder": 1, "content": "게시물 내용", "contentType": "IMAGE" }, { "contentOrder": 2, "content": "게시물 내용2", "contentType": "TEXT" }, { "contentOrder": 3, "content": "게시물 내용3", "contentType": "TEXT" } ], "isOwner": true, "comments": [], "nickName": "우악", "profileUrl": "url", "createdAt": "2025-05-07T23:28:06.929597" }, { "postId": "19e5e498-2617-4059-ac1e-2ddce51677e2", "title": "블로그 게시물 제목4", "contents": [ { "contentOrder": 1, "content": "게시물 내용", "contentType": "IMAGE" }, { "contentOrder": 2, "content": "게시물 내용2", "contentType": "TEXT"해당 구조로 Dto 변경
🚨 주의 사항
없습니다