Fix: Resolve broken references in RootCaApiController & OpenSslService

This commit is contained in:
dyzulk
2026-01-08 09:19:06 +07:00
parent 164375c490
commit 4fd5d60802
2 changed files with 12 additions and 7 deletions

View File

@@ -468,7 +468,9 @@ class OpenSslService
}
// 4. Final Mass Sync
$this->syncAllBundles();
// 4. Final Mass Sync
$installerService = app(\App\Services\CaInstallerService::class);
$installerService->syncAllBundles();
return true;
}
@@ -503,7 +505,8 @@ class OpenSslService
// Sync to CDN
$this->uploadPublicCertsOnly($newCert, 'both');
$this->uploadIndividualInstallersOnly($newCert, 'both');
$installerService = app(\App\Services\CaInstallerService::class);
$installerService->uploadIndividualInstallersOnly($newCert, 'both');
return $newCert;
}