2023-03-28 15:47:37 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class ApplicationSetting extends Model
|
|
|
|
{
|
2023-04-19 14:00:31 +02:00
|
|
|
protected $fillable = [
|
2023-04-25 14:43:35 +02:00
|
|
|
'application_id',
|
2023-04-19 14:00:31 +02:00
|
|
|
'is_git_submodules_allowed',
|
|
|
|
'is_git_lfs_allowed',
|
|
|
|
];
|
2023-03-30 11:09:39 +02:00
|
|
|
public function application()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Application::class);
|
|
|
|
}
|
2023-03-28 15:47:37 +02:00
|
|
|
}
|