chg: [Organisation] Entity accessibility rules

- make created only accessible when creating new objects
cli-modification-summary
iglocska 2022-01-26 14:24:53 +01:00
parent c186c88d5c
commit 4b5bccae28
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
1 changed files with 5 additions and 0 deletions

View File

@ -10,5 +10,10 @@ class Organisation extends AppModel
protected $_accessible = [
'*' => true,
'id' => false,
'created' => false
];
protected $_accessibleOnNew = [
'created' => true
];
}