remove not longer needed imports

This commit is contained in:
einhornimmond 2025-09-30 13:46:52 +02:00
parent bf33cf9341
commit 6c862295f4

View File

@ -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])