fix(telegram): route deploy complete to system chat
TaxBaik CI/CD / build-and-deploy (push) Successful in 54s

This commit is contained in:
2026-06-28 21:03:05 +09:00
parent a7bb8d7149
commit 43c2ff6ad9
+2 -3
View File
@@ -376,9 +376,8 @@ try
using (var scope = app.Services.CreateScope()) using (var scope = app.Services.CreateScope())
{ {
var telegramService = scope.ServiceProvider.GetRequiredService<ITelegramNotificationService>(); var telegramService = scope.ServiceProvider.GetRequiredService<ITelegramNotificationService>();
await telegramService.SendInfoAsync( await telegramService.SendSystemNotificationAsync(
"✅ 배포 완료", $"✅ 배포 완료\n\n환경: {app.Environment.EnvironmentName}\n상태: 정상 운영 중");
$"환경: {app.Environment.EnvironmentName}\n상태: 정상 운영 중");
} }
} }
catch (Exception ex) catch (Exception ex)