From 58d4780a3b489d17f4c01c7c56c3df146c5b3b45 Mon Sep 17 00:00:00 2001 From: Josef Date: Tue, 11 Nov 2025 12:03:55 +0100 Subject: [PATCH] Show Body --- node/users/handlers/signup.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/node/users/handlers/signup.ts b/node/users/handlers/signup.ts index aa227d2..f4d7bdf 100644 --- a/node/users/handlers/signup.ts +++ b/node/users/handlers/signup.ts @@ -30,7 +30,10 @@ export class SignUpHandler extends RequestHandler async _handle( request:FastifyRequest, reply:FastifyReply ) { + + let requestBody = JSON.parse( request.body as string ); + RJLog.log( "Body:", request.body, "Parsed:", requestBody ); let { email, password, userName } = requestBody as { email: string; password: string; userName: string }; if ( ! email || ! password )