public Result create(@RequestBody Map<String, String> body) {
User user = getApiUser();
Integer topicId = Integer.parseInt(body.get("topicId"));
String content = body.get("content"); // User-controlled HTML input
Comment comment = commentService.insert(topicId, content, user);
// Content stored directly without HTML sanitization
return success(comment);