fix: answer controller gebruikt juiste link

This commit is contained in:
laurejablonski 2025-05-16 21:46:36 +02:00
parent 952f420f5a
commit c847851119

View file

@ -17,7 +17,7 @@ export class AnswerController extends BaseController {
constructor(questionId: QuestionId) {
super(
`learningObject/${questionId.learningObjectIdentifier.hruid}/:${questionId.learningObjectIdentifier.version}/questions/${questionId.sequenceNumber}/answers`,
`learningObject/${questionId.learningObjectIdentifier.hruid}/${questionId.learningObjectIdentifier.version}/questions/${questionId.sequenceNumber}/answers`,
);
this.loId = questionId.learningObjectIdentifier;
this.sequenceNumber = questionId.sequenceNumber;