fix: deleting application should delete preview deployments

This commit is contained in:
Andras Bacsai
2024-07-22 14:13:56 +02:00
parent a3a1ff69e1
commit 0d8cc19698
2 changed files with 8 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ class DeleteResourceJob implements ShouldBeEncrypted, ShouldQueue
switch ($this->resource->type()) {
case 'application':
$persistentStorages = $this->resource?->persistentStorages()?->get();
StopApplication::run($this->resource);
StopApplication::run($this->resource, previewDeployments: true);
break;
case 'standalone-postgresql':
case 'standalone-redis':