- Added new config entry job_schedulers_list to config/jqm.php

- Library JobsQueueLib:
	- Added constant JOB_SCHEDULERS_LIST
	- Constructor now loads the jqm configs
	- Added new public method schedule
This commit is contained in:
Paolo
2020-07-22 00:56:52 +02:00
parent 21703cfc00
commit be7ea871be
4 changed files with 126 additions and 0 deletions
+9
View File
@@ -11,3 +11,12 @@ $config['job_type_permissions_white_list'] = array(
'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'
)
);