mirror of
https://github.com/coollabsio/coolify.git
synced 2026-08-28 18:14:35 -05:00
Split V5 dashboard behavior into domain controllers and policies, add agent token rotation/revocation, status reconciliation jobs, ingress firewall syncing, and canvas connection APIs. Add migrations for V5 status tracking, server capabilities, resource connection aliases, and revoked agent tokens.
23 lines
416 B
PHP
23 lines
416 B
PHP
<?php
|
|
|
|
namespace App\Models\V5;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class ApplicationDomain extends V5Model
|
|
{
|
|
protected $table = 'v5_application_domains';
|
|
|
|
protected bool $hasUuidColumn = false;
|
|
|
|
protected $fillable = [
|
|
'application_id',
|
|
'domain',
|
|
];
|
|
|
|
public function application(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Application::class);
|
|
}
|
|
}
|