Skip to content
Merged
Show file tree
Hide file tree
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 @@ -46,7 +46,7 @@ public String createMessage(PushNotificationTemplate request, String taskDetailU
case TASK_REQUESTED -> "📌 *새 작업이 요청되었습니다.*\\n"
+ "\\t\\t*• 🔖 작업명:* " + "*" + request.taskName() + "*" + "\\n"
+ "\\t\\t*• 🙋 요청자:* " + "*" + request.senderName() + "*" + "\\n\\n"
+ "\\t[자세히 보기](" + taskDetailUrl + ")";
+ "\\t[바로가기](" + taskDetailUrl + ")";

case STATUS_SWITCHED -> "작업 상태가 " + "*" + request.message() + "*" + "으로 변경되었습니다.";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private String makeTaskRequestBlock(PushNotificationTemplate request, String tas
),
Map.of(
"type", "button",
"text", "확인하기",
"text", "바로가기",
"style", "default",
"action", Map.of(
"type", "open_system_browser",
Expand Down Expand Up @@ -136,7 +136,7 @@ private String makeNewProcessorBlock(PushNotificationTemplate request, String ta
),
Map.of(
"type", "button",
"text", "확인하기",
"text", "바로가기",
"style", "default",
"action", Map.of(
"type", "open_system_browser",
Expand Down Expand Up @@ -202,7 +202,7 @@ private String makeProcessorChangeBlock(PushNotificationTemplate request, String
),
Map.of(
"type", "button",
"text", "확인하기",
"text", "바로가기",
"style", "default",
"action", Map.of(
"type", "open_system_browser",
Expand Down Expand Up @@ -280,7 +280,7 @@ private String makeCommentBlock(PushNotificationTemplate request, String taskDet
),
Map.of(
"type", "button",
"text", "확인하기",
"text", "바로가기",
"style", "default",
"action", Map.of(
"type", "open_system_browser",
Expand Down Expand Up @@ -346,7 +346,7 @@ private String makeTaskStatusBlock(PushNotificationTemplate request, String task
),
Map.of(
"type", "button",
"text", "확인하기",
"text", "바로가기",
"style", "default",
"action", Map.of(
"type", "open_system_browser",
Expand Down Expand Up @@ -412,7 +412,7 @@ private String makeTerminatedStatusBlock(PushNotificationTemplate request, Strin
),
Map.of(
"type", "button",
"text", "확인하기",
"text", "바로가기",
"style", "default",
"action", Map.of(
"type", "open_system_browser",
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/comment.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<li>내용: <span th:text="${comment}"></span></li>
</ul>
<div class="cta-button">
<a href="https://example.com/task/1" target="_blank" th:href="${taskDetailUrl}">확인하기</a>
<a href="https://example.com/task/1" target="_blank" th:href="${taskDetailUrl}">바로가기</a>
</div>
</div>
<div class="footer">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/processor-assigned.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<li>담당자: <span th:text="${processorName}"></span></li>
</ul>
<div class="cta-button">
<a href="https://example.com/task/1" target="_blank" th:href="${taskDetailUrl}">확인하기</a>
<a href="https://example.com/task/1" target="_blank" th:href="${taskDetailUrl}">바로가기</a>
</div>
</div>
<div class="footer">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/processor-changed.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<li>담당자: <span th:text="${processorName}"></span></li>
</ul>
<div class="cta-button">
<a href="https://example.com/task/1" target="_blank" th:href="${taskDetailUrl}">확인하기</a>
<a href="https://example.com/task/1" target="_blank" th:href="${taskDetailUrl}">바로가기</a>
</div>
</div>
<div class="footer">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/status-switched.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<div class="content">
<p><strong th:text="${title}"></strong> 작업의 상태가 <strong><span th:text="${status}"></span></strong> 으로 변경되었습니다.</p>
<div class="cta-button">
<a href="https://example.com/task/1" target="_blank" th:href="${taskDetailUrl}">확인하기</a>
<a href="https://example.com/task/1" target="_blank" th:href="${taskDetailUrl}">바로가기</a>
</div>
</div>
<div class="footer">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/task-request.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<li>제목: <span th:text="${title}"></span></li>
</ul>
<div class="cta-button">
<a href="https://example.com/task/1" target="_blank" th:href="${taskDetailUrl}">확인하기</a>
<a href="https://example.com/task/1" target="_blank" th:href="${taskDetailUrl}">바로가기</a>
</div>
</div>
<div class="footer">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/task-terminated.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<li>종료 사유: <span th:text="${reason}"></span></li>
</ul>
<div class="cta-button">
<a href="https://example.com/task/1" target="_blank" th:href="${taskDetailUrl}">확인하기</a>
<a href="https://example.com/task/1" target="_blank" th:href="${taskDetailUrl}">바로가기</a>
</div>
</div>
<div class="footer">
Expand Down