Merge remote-tracking branch 'origin/refactor/common' into feat/user-routes
This commit is contained in:
commit
1940be31fb
2 changed files with 2 additions and 8 deletions
|
@ -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([]);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -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;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue