From 6c862295f49fe7ea79232ccc28cf11dd75b58c21 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Tue, 30 Sep 2025 13:46:52 +0200 Subject: [PATCH] remove not longer needed imports --- backend/src/graphql/resolver/CommunityResolver.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/backend/src/graphql/resolver/CommunityResolver.ts b/backend/src/graphql/resolver/CommunityResolver.ts index 88ca37dd9..c3604812e 100644 --- a/backend/src/graphql/resolver/CommunityResolver.ts +++ b/backend/src/graphql/resolver/CommunityResolver.ts @@ -1,7 +1,6 @@ import { Community as DbCommunity, getReachableCommunities, - getCommunityWithFederatedCommunityByIdentifier, getHomeCommunity } from 'database' import { Arg, Args, Authorized, Mutation, Query, Resolver } from 'type-graphql' @@ -21,13 +20,8 @@ import { getCommunityByUuid, } from './util/communities' -import { LOG4JS_BASE_CATEGORY_NAME } from '@/config/const' -import { getLogger } from 'log4js' -import { communityIsReachable, CommunityIsReachableResult } from '../logic/communityIsReachable' import { CONFIG } from '@/config' -const logger = getLogger(`${LOG4JS_BASE_CATEGORY_NAME}.graphql.resolver.CommunityResolver`) - @Resolver() export class CommunityResolver { @Authorized([RIGHTS.COMMUNITY_WITH_API_KEYS])