feat(search): enable comment result linking

This commit is contained in:
Tim
2025-07-08 23:16:29 +08:00
parent 7a8b20047e
commit 29e43ae669
3 changed files with 15 additions and 6 deletions

View File

@@ -58,6 +58,7 @@ public class SearchController {
dto.setText(r.text());
dto.setSubText(r.subText());
dto.setExtra(r.extra());
dto.setPostId(r.postId());
return dto;
})
.collect(Collectors.toList());
@@ -96,5 +97,6 @@ public class SearchController {
private String text;
private String subText;
private String extra;
private Long postId;
}
}