feat: 测试评审任务添加评论通知用例维护人

This commit is contained in:
wenyann 2020-09-23 16:05:28 +08:00
parent 8e19cc9ca3
commit 72e653ae41
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public class TestCaseCommentService {
testCaseWithBLOBs = testCaseMapper.selectByPrimaryKey(request.getCaseId());
SaveTestCaseReviewRequest caseReviewRequest = new SaveTestCaseReviewRequest();
List<String> userIds = new ArrayList<>();
userIds.add(testCaseComment.getAuthor());
userIds.add(testCaseWithBLOBs.getMaintainer());
mailService.sendHtml(userIds, "comment", caseReviewRequest, request, testCaseWithBLOBs);
}