feat: cleanup sentinel on server deletion

fix: Sentinel should not be enabled on build servers
This commit is contained in:
Andras Bacsai
2024-10-17 11:21:43 +02:00
parent b58ff07832
commit 4c95647b96
8 changed files with 27 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace App\Actions\Server;
use App\Models\Server;
use Lorisleiva\Actions\Concerns\AsAction;
class RemoveServer
{
use AsAction;
public function handle(Server $server)
{
StopSentinel::run($server);
$server->delete();
}
}