From 61b262472d09ddaf53ec983cdb8c3bc51a1a6f49 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Mon, 17 Jan 2022 11:21:09 +0100 Subject: [PATCH] elopage hook, log full body --- backend/src/webhook/elopage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/webhook/elopage.ts b/backend/src/webhook/elopage.ts index 1be6c730d..6f5b96e5f 100644 --- a/backend/src/webhook/elopage.ts +++ b/backend/src/webhook/elopage.ts @@ -35,7 +35,7 @@ import { LoginUserRepository } from '../typeorm/repository/LoginUser' export const elopageWebhook = async (req: any, res: any): Promise => { // eslint-disable-next-line no-console - console.log('Elopage Hook received') + console.log('Elopage Hook received', req.body) res.status(200).end() // Responding is important const loginElopgaeBuyRepository = await getCustomRepository(LoginElopageBuysRepository) const loginElopgaeBuy = new LoginElopageBuys()