fix: containerstatusjob

This commit is contained in:
Andras Bacsai
2023-09-26 15:07:33 +02:00
parent fabb97330a
commit 3eb628b773
8 changed files with 14 additions and 18 deletions

View File

@@ -14,12 +14,6 @@ class ServiceApplication extends BaseModel
{
return 'service';
}
public function documentation()
{
$services = Cache::get('services', []);
$service = data_get($services, $this->name, []);
return data_get($service, 'documentation', 'https://coolify.io/docs');
}
public function service()
{
return $this->belongsTo(Service::class);