From 1eb14c05d5493d885cdf0cdaff9efe603175efce Mon Sep 17 00:00:00 2001 From: clauspeterhuebner Date: Tue, 15 Jul 2025 17:33:03 +0200 Subject: [PATCH] add interims handshakeID --- backend/src/graphql/resolver/TransactionLinkResolver.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/graphql/resolver/TransactionLinkResolver.ts b/backend/src/graphql/resolver/TransactionLinkResolver.ts index 3d1bc85c5..14dac8342 100644 --- a/backend/src/graphql/resolver/TransactionLinkResolver.ts +++ b/backend/src/graphql/resolver/TransactionLinkResolver.ts @@ -572,7 +572,7 @@ export class TransactionLinkResolver { throw new LogError('Sender community UUID is not set') } // now with the sender community UUID the jwt token can be verified - const verifiedJwtPayload = await verify(code, senderCom.communityUuid) + const verifiedJwtPayload = await verify('handshakeID', code, senderCom.communityUuid) logger.debug( 'TransactionLinkResolver.queryRedeemJwtLink... nach verify verifiedJwtPayload=', verifiedJwtPayload,