Removes the SSL testSendTelegramMessage function and its associated test credentials from telegramService.ts.

This commit is contained in:
Tola Leng
2025-05-17 16:44:45 +08:00
parent e4d6d84477
commit a166938d42
2 changed files with 8 additions and 11 deletions
@@ -1,10 +1,9 @@
// Export all SSL notification related functionality
export {
checkAllCertificatesAndNotify,
checkCertificateAndNotify,
testCertificateNotification
} from './sslCheckNotifier';
export { sendSSLNotification } from './sslNotificationSender';
export { shouldRunDailyCheck } from './sslScheduleUtils';
checkAllCertificatesAndNotify,
checkCertificateAndNotify
} from './sslCheckNotifier';
export { sendSSLNotification } from './sslNotificationSender';
export { shouldRunDailyCheck } from './sslScheduleUtils';
@@ -13,8 +13,7 @@ import { determineSSLStatus } from './ssl/sslStatusUtils';
import {
checkAllCertificatesAndNotify,
checkCertificateAndNotify,
shouldRunDailyCheck,
testCertificateNotification
shouldRunDailyCheck
} from './ssl/notification';
export {
@@ -25,6 +24,5 @@ export {
checkAndUpdateCertificate,
checkAllCertificatesAndNotify,
checkCertificateAndNotify,
shouldRunDailyCheck,
testCertificateNotification
shouldRunDailyCheck
};