2023-03-24 14:47:58 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2023-06-07 13:08:35 +00:00
|
|
|
|
2023-03-24 14:47:58 +00:00
|
|
|
class PrivateKey extends BaseModel
|
|
|
|
{
|
2023-04-26 13:38:50 +00:00
|
|
|
protected $fillable = [
|
|
|
|
'name',
|
|
|
|
'description',
|
|
|
|
'private_key',
|
|
|
|
'team_id',
|
|
|
|
];
|
2023-06-07 13:08:35 +00:00
|
|
|
static public function ownedByCurrentTeam()
|
|
|
|
{
|
|
|
|
return PrivateKey::whereTeamId(session('currentTeam')->id);
|
|
|
|
}
|
2023-03-24 21:15:36 +00:00
|
|
|
public function servers()
|
|
|
|
{
|
2023-03-27 12:31:42 +00:00
|
|
|
return $this->hasMany(Server::class);
|
2023-03-24 14:47:58 +00:00
|
|
|
}
|
|
|
|
}
|