fix: post en put request met body ipv param
This commit is contained in:
parent
793b2b6bb1
commit
dba8902eeb
6 changed files with 239 additions and 119 deletions
|
@ -91,11 +91,11 @@ export async function getStudentJoinRequestHandler(req: Request, res: Response)
|
|||
}
|
||||
|
||||
export async function updateStudentJoinRequestHandler(req: Request, res: Response) {
|
||||
const username = req.query.username as string;
|
||||
const studentUsername = req.query.studentUsername as string;
|
||||
const classId = req.params.classId;
|
||||
const accepted = req.query.accepted !== 'false'; // default = true
|
||||
requireFields({ username, classId });
|
||||
const accepted = req.body.accepted !== 'false'; // default = true
|
||||
requireFields({ studentUsername, classId });
|
||||
|
||||
await updateClassJoinRequestStatus(username, classId, accepted);
|
||||
await updateClassJoinRequestStatus(studentUsername, classId, accepted);
|
||||
res.status(200);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue