From fe7802de16535edc2ae01fc4abe8525911386805 Mon Sep 17 00:00:00 2001
From: clauspeterhuebner
Date: Wed, 16 Jul 2025 16:26:18 +0200
Subject: [PATCH] correct import after shift jwt from core to shared
---
federation/src/graphql/api/1_0/util/authenticateCommunity.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/federation/src/graphql/api/1_0/util/authenticateCommunity.ts b/federation/src/graphql/api/1_0/util/authenticateCommunity.ts
index ca60eb80e..fdf97379d 100644
--- a/federation/src/graphql/api/1_0/util/authenticateCommunity.ts
+++ b/federation/src/graphql/api/1_0/util/authenticateCommunity.ts
@@ -1,4 +1,4 @@
-import { EncryptedTransferArgs, verifyAndDecrypt } from 'core'
+import { EncryptedTransferArgs } from 'core'
import {
CommunityLoggingView,
Community as DbCommunity,
@@ -14,7 +14,7 @@ import { randombytes_random } from 'sodium-native'
import { AuthenticationClient as V1_0_AuthenticationClient } from '@/client/1_0/AuthenticationClient'
import { LOG4JS_BASE_CATEGORY_NAME } from '@/config/const'
-import { AuthenticationJwtPayloadType, AuthenticationResponseJwtPayloadType, encryptAndSign, OpenConnectionCallbackJwtPayloadType } from 'core'
+import { AuthenticationJwtPayloadType, AuthenticationResponseJwtPayloadType, encryptAndSign, OpenConnectionCallbackJwtPayloadType, verifyAndDecrypt } from 'shared'
const logger = getLogger(`${LOG4JS_BASE_CATEGORY_NAME}.graphql.api.1_0.util.authenticateCommunity`)