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

@ -70,10 +70,10 @@ public class EnumConverter {
*/
public static final List<KeyValueBean> getRoles() {
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.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"));
return list;
}