mirror of
https://github.com/IT4Change/gradido.git
synced 2026-04-06 01:25:28 +00:00
linting
This commit is contained in:
parent
bf227200c0
commit
1d7d93aee6
@ -677,7 +677,16 @@ export class TransactionLinkResolver {
|
|||||||
}
|
}
|
||||||
if (recipientUser.emailContact?.email !== null) {
|
if (recipientUser.emailContact?.email !== null) {
|
||||||
if (methodLogger.isDebugEnabled()) {
|
if (methodLogger.isDebugEnabled()) {
|
||||||
methodLogger.debug('Sending TransactionLinkRedeem Email to recipient=' + recipientUser.firstName + ' ' + recipientUser.lastName + 'sender=' + senderUser.firstName + ' ' + senderUser.lastName)
|
methodLogger.debug(
|
||||||
|
'Sending TransactionLinkRedeem Email to recipient=' +
|
||||||
|
recipientUser.firstName +
|
||||||
|
' ' +
|
||||||
|
recipientUser.lastName +
|
||||||
|
'sender=' +
|
||||||
|
senderUser.firstName +
|
||||||
|
' ' +
|
||||||
|
senderUser.lastName,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
await sendTransactionLinkRedeemedEmail({
|
await sendTransactionLinkRedeemedEmail({
|
||||||
@ -698,7 +707,16 @@ export class TransactionLinkResolver {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (methodLogger.isDebugEnabled()) {
|
if (methodLogger.isDebugEnabled()) {
|
||||||
methodLogger.debug('Sender or Recipient are foreign users with no email contact, not sending Transaction Received Email: recipient=' + recipientUser.firstName + ' ' + recipientUser.lastName + 'sender=' + senderUser.firstName + ' ' + senderUser.lastName)
|
methodLogger.debug(
|
||||||
|
'Sender or Recipient are foreign users with no email contact, not sending Transaction Received Email: recipient=' +
|
||||||
|
recipientUser.firstName +
|
||||||
|
' ' +
|
||||||
|
recipientUser.lastName +
|
||||||
|
'sender=' +
|
||||||
|
senderUser.firstName +
|
||||||
|
' ' +
|
||||||
|
senderUser.lastName,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|||||||
@ -9,7 +9,6 @@ export class SendCoinsResponseJwtPayloadType extends JwtPayloadType {
|
|||||||
recipLastName: string | null
|
recipLastName: string | null
|
||||||
recipAlias: string | null
|
recipAlias: string | null
|
||||||
|
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
handshakeID: string,
|
handshakeID: string,
|
||||||
vote: boolean,
|
vote: boolean,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user