cerebrate/src/Model/Entity/SharingGroup.php

26 lines
483 B
PHP
Raw Normal View History

2021-06-28 14:49:38 +02:00
<?php
namespace App\Model\Entity;
use App\Model\Entity\AppModel;
use Cake\ORM\Entity;
class SharingGroup extends AppModel
{
protected $_accessible = [
'*' => true,
'id' => false,
'uuid' => false,
'organisation_id' => false,
'user_id' => false,
'created' => false
2021-06-28 14:49:38 +02:00
];
protected $_accessibleOnNew = [
'uuid' => true,
'organisation_id' => true,
'user_id' => true,
'created' => true
2021-06-28 14:49:38 +02:00
];
}