fix: [entities] added brood, fixed instance

feature/docker-ci
iglocska 2021-06-29 09:17:03 +02:00
parent cb235232a2
commit f0f49ecbc3
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
2 changed files with 19 additions and 8 deletions

View File

@ -0,0 +1,19 @@
<?php
namespace App\Model\Entity;
use App\Model\Entity\AppModel;
use Cake\ORM\Entity;
class Brood extends AppModel
{
protected $_accessible = [
'*' => true,
'id' => false,
'uuid' => false,
];
protected $_accessibleOnNew = [
'uuid' => true,
];
}

View File

@ -7,13 +7,5 @@ use Cake\ORM\Entity;
class Instance extends AppModel
{
protected $_accessible = [
'*' => true,
'id' => false,
'uuid' => false,
];
protected $_accessibleOnNew = [
'uuid' => true,
];
}