fix: errors in vorige commit gefixt

This commit is contained in:
Adriaan Jacquet 2025-04-06 22:21:07 +02:00
parent 541e8ab2d5
commit 8eb468eef0
2 changed files with 8 additions and 2 deletions

View file

@ -1,9 +1,11 @@
import { Request, Response } from 'express';
import { createAssignment, deleteAssignment, getAllAssignments, getAssignment, getAssignmentsSubmissions } from '../services/assignments.js';
import { createAssignment, deleteAssignment, getAllAssignments, getAssignment, getAssignmentsSubmissions, putAssignment } from '../services/assignments.js';
import { AssignmentDTO } from '@dwengo-1/common/interfaces/assignment';
import {requireFields} from "./error-helper";
import {BadRequestException} from "../exceptions/bad-request-exception";
import { getLogger } from '../logging/initalize.js';
import { Assignment } from '../entities/assignments/assignment.entity.js';
import { EntityDTO } from '@mikro-orm/core';
export async function getAllAssignmentsHandler(req: Request, res: Response): Promise<void> {
const classId = req.params.classid;
@ -52,7 +54,8 @@ export async function putAssignmentHandler(req: Request, res: Response): Promise
throw new BadRequestException("Assignment id should be a number")
}
const assignment = await putAssignment(classid, id);
const assignmentData = req.body as Partial<EntityDTO<Assignment>>;
const assignment = await putAssignment(classid, id, assignmentData);
res.json({ assignment });
}

View file

@ -5,6 +5,7 @@ import {
getAllAssignmentsHandler,
getAssignmentHandler,
getAssignmentsSubmissionsHandler,
putAssignmentHandler,
} from '../controllers/assignments.js';
import groupRouter from './groups.js';
@ -16,6 +17,8 @@ router.post('/', createAssignmentHandler);
router.get('/:id', getAssignmentHandler);
router.put('/:id', putAssignmentHandler);
router.delete('/:id', deleteAssignmentHandler);
router.get('/:id/submissions', getAssignmentsSubmissionsHandler);