Merge remote-tracking branch 'origin/refactor/common' into feat/user-routes

This commit is contained in:
Gabriellvl 2025-04-03 11:00:25 +02:00
commit 1940be31fb
2 changed files with 2 additions and 8 deletions

View file

@ -109,7 +109,7 @@ describe('LearningObjectService', () => {
hruid: 'non_existing', hruid: 'non_existing',
language: Language.Dutch, language: Language.Dutch,
}); });
expect(result).toEqual([]); expect(result).toStrictEqual([]);
}); });
}); });
@ -127,7 +127,7 @@ describe('LearningObjectService', () => {
hruid: 'non_existing', hruid: 'non_existing',
language: Language.Dutch, language: Language.Dutch,
}); });
expect(result).toEqual([]); expect(result).toStrictEqual([]);
}); });
}); });
}); });

View file

@ -3,10 +3,4 @@ export interface UserDTO {
username: string; username: string;
firstName: string; firstName: string;
lastName: string; lastName: string;
endpoints?: {
self: string;
classes: string;
questions: string;
invitations: string;
};
} }