lasthourcloud/app/Models/GitlabApp.php

22 lines
357 B
PHP
Raw Permalink Normal View History

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-04-25 12:43:35 +00:00
public function applications()
{
return $this->morphMany(Application::class, 'source');
}
public function privateKey()
{
return $this->belongsTo(PrivateKey::class);
}
2023-03-28 10:09:34 +00:00
}