mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-11 17:19:29 +00:00
3bfe1cdeea
- 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
14 lines
376 B
PHP
14 lines
376 B
PHP
<?php
|
|
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
// 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:rw',
|
|
'developer:rw'
|
|
),
|
|
'OEHPayment' => 'developer:rw',
|
|
'SAPPayment' => 'developer:rw'
|
|
);
|