Files
checkcle/application/src/services/sslCertificateService.ts
T
Tola Leng 614c10188d feat: Add check interval and check_at update
- Added a "Check Interval" field to the SSL certificate create/edit forms.
- Implemented functionality to update the `check_at` field in Pocketbase with the current time when the "Check" button is clicked.
2025-06-20 17:17:34 +07:00

30 lines
704 B
TypeScript

// This file re-exports all SSL certificate related services for backward compatibility
import {
fetchSSLCertificates,
addSSLCertificate,
checkAndUpdateCertificate,
triggerImmediateCheck,
deleteSSLCertificate
} from './ssl';
import { determineSSLStatus } from './ssl/sslStatusUtils';
// Import from the new refactored location
import {
checkAllCertificatesAndNotify,
checkCertificateAndNotify,
shouldRunDailyCheck
} from './ssl/notification';
export {
determineSSLStatus,
fetchSSLCertificates,
addSSLCertificate,
checkAndUpdateCertificate,
triggerImmediateCheck,
deleteSSLCertificate,
checkAllCertificatesAndNotify,
checkCertificateAndNotify,
shouldRunDailyCheck
};