fix: consistente naamgeving

This commit is contained in:
Gabriellvl 2025-03-07 10:55:44 +01:00
parent 037763a810
commit 3b71c80be6
11 changed files with 17 additions and 17 deletions

View file

@ -1,7 +1,7 @@
import { Request, Response } from 'express'
import { getAssignment } from '../services/assignments';
// typescript is annoywith with parameter forwarding from class.ts
// typescript is annoywith with parameter forwarding from classes.ts
interface AssignmentParams {
classid: string;
id: string;
@ -27,4 +27,4 @@ export async function getAssignmentHandler(
}
res.json(assignment);
}
}