Merge branch 'main' into develop

cli-modification-summary
iglocska 2022-01-31 09:36:15 +01:00
commit 4cac47b631
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
3 changed files with 4 additions and 1 deletions

View File

@ -7,5 +7,4 @@ use Cake\ORM\Entity;
class EncryptionKey extends AppModel class EncryptionKey extends AppModel
{ {
} }

View File

@ -11,10 +11,12 @@ class Individual extends AppModel
'*' => true, '*' => true,
'id' => false, 'id' => false,
'uuid' => false, 'uuid' => false,
'created' => false,
]; ];
protected $_accessibleOnNew = [ protected $_accessibleOnNew = [
'uuid' => true, 'uuid' => true,
'created' => true,
]; ];
protected $_virtual = ['full_name']; protected $_virtual = ['full_name'];

View File

@ -13,11 +13,13 @@ class SharingGroup extends AppModel
'uuid' => false, 'uuid' => false,
'organisation_id' => false, 'organisation_id' => false,
'user_id' => false, 'user_id' => false,
'created' => false
]; ];
protected $_accessibleOnNew = [ protected $_accessibleOnNew = [
'uuid' => true, 'uuid' => true,
'organisation_id' => true, 'organisation_id' => true,
'user_id' => true, 'user_id' => true,
'created' => true
]; ];
} }