issues
search
INSPJT
/
instagram_clone_backend
APIs For Front, AOS, iOS
13
stars
2
forks
source link
게시글 (Post API) 리팩토링 필요
#110
Closed
ParkJiwoon
closed
3 years ago
ParkJiwoon
commented
3 years ago
Feature
현재 사용자 게시글 응답으로 사용 중인
PostReadResponseDto
에 미리 보이는 댓글인
commentPreview
필드값이 포함되어 있음
만들 당시에는 당연하게 생각했으나 지금 와서 생각해보면
Post
와
Comment
는 엄연히 다른 도메인인데 같이 내려주는 게 이상함
하나의 API 는 하나의 도메인만 내려주는 게 맞다고 생각하여 이 둘을 분리
PostReadResponseDto
에서는 Post 에 관한 정보만 내려주고 추가로 댓글 정보가 필요한 건 클라가 Comment API 를 호출하게 함
Goal
PostReadResponseDto
에서
commentPreview
등 댓글 관련 필드값 제거
필요에 따라 네이밍 등 코드 리팩토링
Assignees
@ParkJiwoon
ParkJiwoon
commented
3 years ago
리팩토링 완료해서 종료
Feature
PostReadResponseDto
에 미리 보이는 댓글인commentPreview
필드값이 포함되어 있음Post
와Comment
는 엄연히 다른 도메인인데 같이 내려주는 게 이상함PostReadResponseDto
에서는 Post 에 관한 정보만 내려주고 추가로 댓글 정보가 필요한 건 클라가 Comment API 를 호출하게 함Goal
PostReadResponseDto
에서commentPreview
등 댓글 관련 필드값 제거Assignees