Releases

2.0.0

Breaking: Extconf department job configuration format change

The configuration for the job department now has to be formated as array instead of a string.

$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['ats']['job']['roles'] = [
    'department' => ["Abt", "Ausbilder", "Ausbildung", "FB"]
];

Previously the array (for the same case) looked like:

$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['ats']['job']['roles'] = [
    'department' => '"Abt", "Ausbilder", "Ausbildung", "FB"'
];