3b191fa73e
add: coolify version config fix: private key for private git based apps
12 lines
165 B
PHP
12 lines
165 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class GitlabApp extends BaseModel
|
|
{
|
|
public function privateKey()
|
|
{
|
|
return $this->belongsTo(PrivateKey::class);
|
|
}
|
|
}
|