fix: use stable inquiry list links
TaxBaik Browser E2E / browser-e2e (push) Successful in 1m19s
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m22s

This commit is contained in:
2026-06-27 16:28:33 +09:00
parent 4f2d5b1777
commit 046a16c75b
2 changed files with 6 additions and 6 deletions
@@ -17,9 +17,9 @@
<MudText Typo="Typo.h5">문의 상세</MudText>
<MudButton Variant="Variant.Filled"
Color="Color.Primary"
Href="@($"/taxbaik/admin/inquiries/{InquiryId}")"
Href="/taxbaik/admin/inquiries"
Target="_blank">
답변 링크 열기
문의 목록 열기
</MudButton>
</MudStack>
@@ -26,7 +26,7 @@ public class TelegramInquiryNotificationService : IInquiryNotificationService
if (string.IsNullOrWhiteSpace(botToken) || string.IsNullOrWhiteSpace(chatId))
return;
var adminLink = $"{_baseUrl}/admin/inquiries/{inquiryId}";
var adminLink = $"{_baseUrl}/admin/inquiries";
var summary = message.Length > 180 ? message[..180] + "..." : message;
var createdAtKst = createdAtUtc.AddHours(9);
var text = new StringBuilder()
@@ -41,7 +41,7 @@ public class TelegramInquiryNotificationService : IInquiryNotificationService
.AppendLine("내용 요약:")
.AppendLine(summary)
.AppendLine()
.AppendLine($"답변 링크: {adminLink}")
.AppendLine($"답변 목록 링크: {adminLink}")
.ToString();
var client = _httpClientFactory.CreateClient();
@@ -72,7 +72,7 @@ public class TelegramInquiryNotificationService : IInquiryNotificationService
if (string.IsNullOrWhiteSpace(botToken) || string.IsNullOrWhiteSpace(chatId))
return;
var adminLink = $"{_baseUrl}/admin/inquiries/{inquiryId}";
var adminLink = $"{_baseUrl}/admin/inquiries";
var text = new StringBuilder()
.AppendLine("✏️ 문의 상태가 변경되었습니다.")
.AppendLine()
@@ -81,7 +81,7 @@ public class TelegramInquiryNotificationService : IInquiryNotificationService
.AppendLine($"연락처: {phone}")
.AppendLine($"상태: {FormatStatus(previousStatus)} -> {FormatStatus(newStatus)}")
.AppendLine()
.AppendLine($"답변 링크: {adminLink}")
.AppendLine($"답변 목록 링크: {adminLink}")
.ToString();
var client = _httpClientFactory.CreateClient();