Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public String send(Notification notification) throws Exception {
}

private String buildHtmlContent(Notification notification) {
String notificationUrl = frontendUrl + "/notifications";
String notificationUrl = frontendUrl + "/notification";
// HTML Injection 방지를 위해 사용자 입력값 이스케이프 처리
String escapedTitle = HtmlUtils.htmlEscape(notification.getTitle());
String escapedBody = HtmlUtils.htmlEscape(notification.getBody());
Expand Down
Loading