add handshakeID in invocation of super

This commit is contained in:
clauspeterhuebner 2025-07-15 17:27:57 +02:00
parent 98a8aa2576
commit c473525f9d
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ export class DisburseJwtPayloadType extends JwtPayloadType {
recipientAlias: string,
) {
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
super()
super('handshakeID')
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
this.tokentype = DisburseJwtPayloadType.DISBURSE_ACTIVATION_TYPE
this.sendercommunityuuid = senderCommunityUuid

View File

@ -22,7 +22,7 @@ export class RedeemJwtPayloadType extends JwtPayloadType {
validUntil: string,
) {
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
super()
super('handshakeID')
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
this.tokentype = RedeemJwtPayloadType.REDEEM_ACTIVATION_TYPE
this.sendercommunityuuid = senderCom