feat: implement dual CDN strategy and archive management UI

This commit is contained in:
dyzulk
2026-01-07 04:43:42 +07:00
parent b4cbd8506c
commit 1b3787628d
5 changed files with 180 additions and 76 deletions

View File

@@ -23,6 +23,7 @@ class CaCertificate extends Model
'organization',
'valid_from',
'valid_to',
'is_latest',
'cert_path',
'der_path',
'bat_path',
@@ -36,6 +37,7 @@ class CaCertificate extends Model
protected $casts = [
'valid_from' => 'datetime',
'valid_to' => 'datetime',
'is_latest' => 'boolean',
'last_synced_at' => 'datetime',
'last_downloaded_at' => 'datetime',
];