(ctx context.Context, userID, commentID string)
| 507 | } |
| 508 | |
| 509 | func (cs *CommentService) checkIsVote(ctx context.Context, userID, commentID string) (isVote bool) { |
| 510 | status := cs.voteCommon.GetVoteStatus(ctx, commentID, userID) |
| 511 | return len(status) > 0 |
| 512 | } |
| 513 | |
| 514 | // GetCommentPersonalWithPage get personal comment list page |
| 515 | func (cs *CommentService) GetCommentPersonalWithPage(ctx context.Context, req *schema.GetCommentPersonalWithPageReq) ( |
no test coverage detected