Merge remote-tracking branch 'origin/feat/assignment-page' into feat/assignment-page

# Conflicts:
#	frontend/src/views/assignments/UserAssignments.vue
This commit is contained in:
Joyelle Ndagijimana 2025-04-22 09:04:44 +02:00
commit e3ca01a730

View file

@ -34,7 +34,7 @@ export class Assignment {
@OneToMany({
entity: () => Group,
mappedBy: 'assignment',
cascade: [Cascade.ALL]
cascade: [Cascade.ALL],
})
groups: Collection<Group> = new Collection<Group>(this);
}