mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-03 11:59:29 +00:00
be7ea871be
- Library JobsQueueLib: - Added constant JOB_SCHEDULERS_LIST - Constructor now loads the jqm configs - Added new public method schedule
23 lines
588 B
PHP
23 lines
588 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'
|
|
);
|
|
|
|
// List of schedulers that can be run by the scheduler
|
|
$config['job_schedulers_list'] = array( // Controllers
|
|
'extensions/FHC-Core-SAP/JBMScheduler' => array( // Methods
|
|
'newUsers',
|
|
'updateUsers'
|
|
)
|
|
);
|
|
|