f57684b024
Add new testhost Remove privatekey injection from Dockerfile
12 lines
184 B
PHP
12 lines
184 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Server extends BaseModel
|
|
{
|
|
public function privateKeys()
|
|
{
|
|
return $this->morphToMany(PrivateKey::class, 'private_keyable');
|
|
}
|
|
}
|