Added second hierarchy to dummy objects

This commit is contained in:
joss 2025-07-17 16:40:32 +02:00
parent 9d9c7fa6b9
commit 84218c2ba2

View file

@ -57,11 +57,11 @@ public class Model {
this.add(new Student("students/dritch", "Dennis", "Ritchie", "000007"));
// Gruppen und Beziehungen
this.add(new Group("groups/if24ws2-b", "Softwareentwicklung WiSe 24/25 Seminargruppe 2"));
this.add(new Group("groups/coursegroups/if24ws2-b", "Softwareentwicklung WiSe 24/25 Seminargruppe 2"));
this.add(new Group("groups/admins", "Administrator:innen"));
this.add(new Group("groups/alumni", "Alumni"));
this.add(new Group("groups/leer", "Leere Gruppe"));
this.addRelation("groups/if24ws2-b", "students/jotto5");
this.addRelation("groups/coursegroups/if24ws2-b", "students/jotto5");
this.addRelation("groups/admins", "students/vnachn");
this.addRelation("groups/admins", "students/ltorva");
this.addRelation("groups/alumni", "students/alovel");