614c10188d
- 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.
30 lines
704 B
TypeScript
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
|
|
}; |