Package inha.git.team.api.service
Interface TeamCommentService
- All Known Implementing Classes:
TeamCommentServiceImpl
public interface TeamCommentService
-
Method Summary
Modifier and TypeMethodDescriptioncreateComment
(User user, CreateCommentRequest createCommentRequest) createReplyComment
(User user, CreateReplyCommentRequest createReplyCommentRequest) deleteComment
(User user, Integer commentIdx) deleteReplyComment
(User user, Integer replyCommentIdx) getAllCommentsByTeamPostIdx
(Integer postIdx) updateComment
(User user, Integer commentIdx, UpdateCommentRequest updateCommentRequest) updateReplyComment
(User user, Integer replyCommentIdx, UpdateCommentRequest updateCommentRequest)
-
Method Details
-
getAllCommentsByTeamPostIdx
-
createComment
-
updateComment
TeamCommentResponse updateComment(User user, Integer commentIdx, UpdateCommentRequest updateCommentRequest) -
deleteComment
-
createReplyComment
TeamReplyCommentResponse createReplyComment(User user, CreateReplyCommentRequest createReplyCommentRequest) -
updateReplyComment
TeamReplyCommentResponse updateReplyComment(User user, Integer replyCommentIdx, UpdateCommentRequest updateCommentRequest) -
deleteReplyComment
-