fix: errors in vorige commit gefixt
This commit is contained in:
		
							parent
							
								
									541e8ab2d5
								
							
						
					
					
						commit
						8eb468eef0
					
				
					 2 changed files with 8 additions and 2 deletions
				
			
		|  | @ -1,9 +1,11 @@ | ||||||
| import { Request, Response } from 'express'; | 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 { AssignmentDTO } from '@dwengo-1/common/interfaces/assignment'; | ||||||
| import {requireFields} from "./error-helper"; | import {requireFields} from "./error-helper"; | ||||||
| import {BadRequestException} from "../exceptions/bad-request-exception"; | import {BadRequestException} from "../exceptions/bad-request-exception"; | ||||||
| import { getLogger } from '../logging/initalize.js'; | 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> { | export async function getAllAssignmentsHandler(req: Request, res: Response): Promise<void> { | ||||||
|     const classId = req.params.classid; |     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") |         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 }); |     res.json({ assignment }); | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -5,6 +5,7 @@ import { | ||||||
|     getAllAssignmentsHandler, |     getAllAssignmentsHandler, | ||||||
|     getAssignmentHandler, |     getAssignmentHandler, | ||||||
|     getAssignmentsSubmissionsHandler, |     getAssignmentsSubmissionsHandler, | ||||||
|  |     putAssignmentHandler, | ||||||
| } from '../controllers/assignments.js'; | } from '../controllers/assignments.js'; | ||||||
| import groupRouter from './groups.js'; | import groupRouter from './groups.js'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,6 +17,8 @@ router.post('/', createAssignmentHandler); | ||||||
| 
 | 
 | ||||||
| router.get('/:id', getAssignmentHandler); | router.get('/:id', getAssignmentHandler); | ||||||
| 
 | 
 | ||||||
|  | router.put('/:id', putAssignmentHandler); | ||||||
|  | 
 | ||||||
| router.delete('/:id', deleteAssignmentHandler); | router.delete('/:id', deleteAssignmentHandler); | ||||||
| 
 | 
 | ||||||
| router.get('/:id/submissions', getAssignmentsSubmissionsHandler); | router.get('/:id/submissions', getAssignmentsSubmissionsHandler); | ||||||
|  |  | ||||||
		Reference in a new issue
	
	 Adriaan Jacquet
						Adriaan Jacquet