This commit is contained in:
Jörg Henke 2023-05-03 21:25:35 +02:00
parent 4460c6d16b
commit 24e4c78820
2 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ apply plugin: 'war'
apply plugin: 'application' apply plugin: 'application'
group = 'de.jottyfan.camporganizer' group = 'de.jottyfan.camporganizer'
version = '0.4.7' version = '0.4.8'
sourceCompatibility = 17 sourceCompatibility = 17
mainClassName = "de.jottyfan.camporganizer.Main" mainClassName = "de.jottyfan.camporganizer.Main"

View File

@ -70,10 +70,10 @@ public class EnumConverter {
*/ */
public static final List<KeyValueBean> getRoles() { public static final List<KeyValueBean> getRoles() {
List<KeyValueBean> list = new ArrayList<>(); List<KeyValueBean> list = new ArrayList<>();
list.add(new KeyValueBean().of(EnumCamprole.student.getLiteral(), "Teilnehmer"));
list.add(new KeyValueBean().of(EnumCamprole.teacher.getLiteral(), "Mitarbeiter"));
list.add(new KeyValueBean().of(EnumCamprole.director.getLiteral(), "Leitungsteam")); list.add(new KeyValueBean().of(EnumCamprole.director.getLiteral(), "Leitungsteam"));
list.add(new KeyValueBean().of(EnumCamprole.feeder.getLiteral(), "Küchenteam")); list.add(new KeyValueBean().of(EnumCamprole.feeder.getLiteral(), "Küchenteam"));
list.add(new KeyValueBean().of(EnumCamprole.teacher.getLiteral(), "Mitarbeiter"));
list.add(new KeyValueBean().of(EnumCamprole.student.getLiteral(), "Teilnehmer"));
list.add(new KeyValueBean().of(EnumCamprole.observer.getLiteral(), "Mitarbeiterkind")); list.add(new KeyValueBean().of(EnumCamprole.observer.getLiteral(), "Mitarbeiterkind"));
return list; return list;
} }