This commit is contained in:
Andras Bacsai
2023-04-19 14:00:31 +02:00
parent f61a67279a
commit 2e8b1134b9
14 changed files with 127 additions and 29 deletions

View File

@@ -6,6 +6,10 @@ use Illuminate\Database\Eloquent\Model;
class ApplicationSetting extends Model
{
protected $fillable = [
'is_git_submodules_allowed',
'is_git_lfs_allowed',
];
public function application()
{
return $this->belongsTo(Application::class);