fix: dubbel punt moet niet in link

This commit is contained in:
laurejablonski 2025-05-20 11:19:34 +02:00
parent 4a7b321b53
commit c7c3a209e1

View file

@ -14,7 +14,7 @@ export class QuestionController extends BaseController {
loId: LearningObjectIdentifierDTO;
constructor(loId: LearningObjectIdentifierDTO) {
super(`learningObject/${loId.hruid}/:${loId.version}/questions`);
super(`learningObject/${loId.hruid}/${loId.version}/questions`);
this.loId = loId;
}