feat: dockerCleanupExecutions relationship

This commit is contained in:
peaklabs-dev 2025-01-15 17:14:05 +01:00
parent 52abc7cc92
commit 222af12ef0
No known key found for this signature in database

View file

@ -199,6 +199,11 @@ public function settings()
return $this->hasOne(ServerSetting::class);
}
public function dockerCleanupExecutions()
{
return $this->hasMany(DockerCleanupExecution::class);
}
public function proxySet()
{
return $this->proxyType() && $this->proxyType() !== 'NONE' && $this->isFunctional() && ! $this->isSwarmWorker() && ! $this->settings->is_build_server;