allowedNoten config integer instead of string so javascript array.includes() doesnt miss the noten options

This commit is contained in:
Johann Hoffmann
2025-12-04 16:57:24 +01:00
parent 035e844fab
commit ec7ebc8286
+1 -1
View File
@@ -17,7 +17,7 @@ $config['URL_MITARBEITER'] = 'index.ci.php/Cis/Abgabetool/Mitarbeiter';
//$config['ALLOWED_ABGABETYPEN_BETREUER'] = ['Zwischenabgabe', 'Quality Gate 1', 'Quality Gate 2'];
$config['ALLOWED_ABGABETYPEN_BETREUER'] = ['zwischen', 'qualgate1', 'qualgate2']; // tbl_paabgabetyp pk
//$config['ALLOWED_NOTEN_ABGABETOOL'] = ['Bestanden', 'Nicht bestanden'];
$config['ALLOWED_NOTEN_ABGABETOOL'] = ['10', '14']; // tbl_note pk
$config['ALLOWED_NOTEN_ABGABETOOL'] = [10, 14]; // tbl_note pk
$config['beurteilung_link_fallback'] = 'addons/fhtw/content/projektbeurteilung/projektbeurteilungDocumentExport.php?projektarbeit_id=?&betreuerart_kurzbz=?&person_id=?';