- Fixed messages and comments in PermissionLib

- JobsQueueManager->addNewJobsToQueue now checks permission to write new jobs in the queue
- Added statuses for system.tbl_jobstatuses in system/dbupdate_3.3.php
- Added permission access type (read/write) in configuration file application/config/jqm.php
This commit is contained in:
Paolo
2020-03-05 18:48:26 +01:00
parent cd815acdbf
commit 3bfe1cdeea
4 changed files with 30 additions and 13 deletions
+5 -8
View File
@@ -2,15 +2,12 @@
if (! defined('BASEPATH')) exit('No direct script access allowed');
// White list of permissions that are able to store a spcific job type in database
// White list of permissions (write mode have to be set) that are able to store a specific job type in database
$config['job_type_permissions_white_list'] = array(
'SAPStammdatenUpdate' => array(
'admin'
'admin:rw',
'developer:rw'
),
'OEHPayment' => array(
'admin'
),
'SAPPayment' => array(
'admin'
)
'OEHPayment' => 'developer:rw',
'SAPPayment' => 'developer:rw'
);