fix(backend): Foute retourwaarde voor submissions verbeterd.

This commit is contained in:
Gerald Schmittinger 2025-04-17 00:53:47 +02:00
parent a39c83c166
commit 72c9d232be
2 changed files with 3 additions and 3 deletions

View file

@ -37,7 +37,7 @@ export async function getSubmissionsHandler(req: Request, res: Response): Promis
)
}
res.json(submissions);
res.json({ submissions });
}
export async function getSubmissionHandler(req: Request, res: Response): Promise<void> {

View file

@ -11,7 +11,7 @@
import type {GroupDTO} from "@dwengo-1/common/interfaces/group";
import type {StudentDTO} from "@dwengo-1/common/interfaces/student";
import type {LearningObjectIdentifierDTO} from "@dwengo-1/common/interfaces/learning-content";
import type {User, UserProfile} from "oidc-client-ts";
import type {UserProfile} from "oidc-client-ts";
const isStudent = computed(() => authService.authState.activeRole === "student");
@ -135,7 +135,7 @@
class="learning-object-container"
v-html="learningPathHtml.data.body.innerHTML"
></div>
<p>Last submissions: {{ existingSubmissions?.submissions?.map(it => it.content) }}</p>
<p>Last submissions: {{ existingSubmissions }}</p>
<p>Your answer: {{ currentAnswer }}</p>
<v-btn v-if="isStudent && props.group"
prepend-icon="mdi-check"