Fixed permissions: now all the controllers that extend FHC_Controller and need the write permission, have added the read permission

It it a workaroud for GET/POST checks
This commit is contained in:
Paolo
2018-03-22 17:13:12 +01:00
parent e8bec1ebf5
commit e4a254a284
12 changed files with 52 additions and 52 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ class UDF extends FHC_Controller
parent::__construct(
array(
'index' => 'basis/person:r',
'saveUDF' => 'basis/person:w'
'saveUDF' => 'basis/person:rw'
)
);