Merge branch 'dev' into feat/pagina-overzicht-klassen-voor-student

This commit is contained in:
laurejablonski 2025-04-08 19:35:10 +02:00
commit 0e70ccf672
5 changed files with 3 additions and 5 deletions

View file

@ -45,7 +45,6 @@ export class ClassController extends BaseController {
return this.get<StudentsResponse>(`/${id}/students`, { full });
}
// TODO
async getTeacherInvitations(id: string, full = true): Promise<TeacherInvitationsResponse> {
return this.get<TeacherInvitationsResponse>(`/${id}/teacher-invitations`, { full });
}

View file

@ -22,7 +22,7 @@ export class SubmissionController extends BaseController {
return this.get<SubmissionResponse>(`/${submissionNumber}`);
}
async createSubmission(data: any): Promise<SubmissionResponse> {
async createSubmission(data: unknown): Promise<SubmissionResponse> {
return this.post<SubmissionResponse>(`/`, data);
}