HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel

Path
/users/{id}/posts/{id}/comments/{id}/likes
기능
*게시글 댓글 좋아요 등록
비고
- commentLikeId 추가 - author ⇒ userId로 변경
완료
완료
HTTP verbs
POST
도메인
게시판
댓글
좋아요

Request


Response


{ commentId: string, // userId: string, // 좋아요한 유저의 아이디, 의논 필요 author: user{}, // 좋아요한 유저의 정보 createdAt: string, // 의논 필요 updatedAt: string, // 의논 필요 }
{ commentLikeId: number; commentId: number; userId: number; }