mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Añadido helper para crear los archivos de costantes de RBAC
This commit is contained in:
@ -8,11 +8,13 @@ class GroupEntity extends \CodeIgniter\Entity\Entity
|
||||
protected $attributes = [
|
||||
"id" => null,
|
||||
"keyword" => null,
|
||||
"name" => null,
|
||||
"title" => null,
|
||||
"description" => null,
|
||||
"rules" => null,
|
||||
"created_at" => null,
|
||||
"updated_at" => null,
|
||||
];
|
||||
protected $casts = [];
|
||||
protected $casts = [
|
||||
"rules" => "json",
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user