fix(backend): Fouten in isTransitionPossible en het opzetten van de testdata verbeterd.
This commit is contained in:
parent
b539c28d8c
commit
fc46e79d05
10 changed files with 249 additions and 68 deletions
|
@ -47,7 +47,7 @@ export class LearningObject {
|
|||
teacherExclusive: boolean = false;
|
||||
|
||||
@Property({ type: 'array' })
|
||||
skosConcepts!: string[];
|
||||
skosConcepts: string[] = [];
|
||||
|
||||
@Embedded({
|
||||
entity: () => EducationalGoal,
|
||||
|
@ -64,8 +64,8 @@ export class LearningObject {
|
|||
@Property({ type: 'smallint', nullable: true })
|
||||
difficulty?: number;
|
||||
|
||||
@Property({ type: 'integer' })
|
||||
estimatedTime!: number;
|
||||
@Property({ type: 'integer', nullable: true })
|
||||
estimatedTime?: number;
|
||||
|
||||
@Embedded({
|
||||
entity: () => ReturnValue,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue