From 06ed4d0a12a5ac7c3f53391d5bc70897af35507c Mon Sep 17 00:00:00 2001 From: clauspeterhuebner Date: Wed, 16 Jul 2025 16:01:21 +0200 Subject: [PATCH] correct imports after shift of jwt from core to shared --- core/src/graphql/logic/interpretEncryptedTransferArgs.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/graphql/logic/interpretEncryptedTransferArgs.ts b/core/src/graphql/logic/interpretEncryptedTransferArgs.ts index bbb8637e7..26036b350 100644 --- a/core/src/graphql/logic/interpretEncryptedTransferArgs.ts +++ b/core/src/graphql/logic/interpretEncryptedTransferArgs.ts @@ -1,9 +1,9 @@ import { EncryptedTransferArgs } from '../model/EncryptedTransferArgs' -import { JwtPayloadType } from '../../auth/jwt/payloadtypes/JwtPayloadType' +import { JwtPayloadType } from 'shared' import { Community as DbCommunity } from 'database' import { getLogger } from 'log4js' import { CommunityLoggingView, getHomeCommunity } from 'database' -import { verifyAndDecrypt } from '../../auth/jwt/JWT' +import { verifyAndDecrypt } from 'shared' import { LOG4JS_BASE_CATEGORY_NAME } from '../../config/const' const logger = getLogger(`${LOG4JS_BASE_CATEGORY_NAME}.graphql.resolver.util.interpretEncryptedTransferArgs`)