remove user constant, not required

This commit is contained in:
Ulf Gebhardt 2023-02-17 23:12:11 +01:00
parent d21996a045
commit b887068226
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -325,7 +325,6 @@ export class TransactionLinkResolver {
paginated: Paginated,
@Ctx() context: Context,
): Promise<TransactionLinkResult> {
const user = getUser(context)
return transactionLinkList(
paginated,
{
@ -333,7 +332,7 @@ export class TransactionLinkResolver {
withExpired: true,
withRedeemed: false,
},
user,
getUser(context),
)
}