refactor: joinrequests uit classdto

This commit is contained in:
Gabriellvl 2025-04-06 17:18:13 +02:00
parent db3c531038
commit 6c3dbc99bb
4 changed files with 7 additions and 4 deletions

View file

@ -10,7 +10,6 @@ export function mapToClassDTO(cls: Class): ClassDTO {
displayName: cls.displayName,
teachers: cls.teachers.map((teacher) => teacher.username),
students: cls.students.map((student) => student.username),
joinRequests: [], // TODO
};
}