Show Body 2

This commit is contained in:
Josef 2025-11-11 12:04:53 +01:00
parent 58d4780a3b
commit 3fc1c3b758
1 changed files with 1 additions and 2 deletions

View File

@ -31,7 +31,6 @@ export class SignUpHandler extends RequestHandler
async _handle( request:FastifyRequest, reply:FastifyReply ) async _handle( request:FastifyRequest, reply:FastifyReply )
{ {
let requestBody = JSON.parse( request.body as string ); let requestBody = JSON.parse( request.body as string );
RJLog.log( "Body:", request.body, "Parsed:", requestBody ); RJLog.log( "Body:", request.body, "Parsed:", requestBody );
let { email, password, userName } = requestBody as { email: string; password: string; userName: string }; let { email, password, userName } = requestBody as { email: string; password: string; userName: string };