feat(backend): Repositories voor leerinhoud

LearningObjectRepository, LearningPathRepository en AttachmentRepository aangemaakt.
This commit is contained in:
Gerald Schmittinger 2025-02-26 00:52:45 +01:00
parent cf97a3af84
commit 8ec201513c
5 changed files with 36 additions and 2 deletions

View file

@ -23,7 +23,7 @@ export class LearningPath {
image!: string;
@Embedded({entity: () => LearningPathNode, array: true})
nodes: LearningPathNode[];
nodes: LearningPathNode[] = [];
}
@Embeddable()