2023-03-28 10:09:34 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
class GitlabApp extends BaseModel
|
|
|
|
{
|
2023-06-16 10:00:36 +00:00
|
|
|
protected $hidden = [
|
|
|
|
'webhook_token',
|
|
|
|
'app_secret',
|
|
|
|
];
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-04-25 12:43:35 +00:00
|
|
|
public function applications()
|
|
|
|
{
|
|
|
|
return $this->morphMany(Application::class, 'source');
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-03-30 09:09:39 +00:00
|
|
|
public function privateKey()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(PrivateKey::class);
|
|
|
|
}
|
2023-03-28 10:09:34 +00:00
|
|
|
}
|