Merge remote-tracking branch 'origin/2946-feature-x-com-3-introduce-business-communities' into 2956-feature-x-com-4-introduce-public-community-info-handshake

This commit is contained in:
Claus-Peter Hübner 2023-04-27 20:10:57 +02:00
commit c6804e634d
2 changed files with 2 additions and 3 deletions

View File

@ -30,7 +30,7 @@ export class Community {
url: string
@Field(() => Date, { nullable: true })
creationDate: Date | null
creationDate: Date | null
@Field(() => String, { nullable: true })
uuid: string | null

View File

@ -1,11 +1,10 @@
import { Community as DbCommunity } from '@entity/Community'
import { FederatedCommunity as DbFederatedCommunity } from '@entity/FederatedCommunity'
import { Community } from '@model/Community'
import { Resolver, Query, Authorized } from 'type-graphql'
import { Community } from '@model/Community'
import { FederatedCommunity } from '@model/FederatedCommunity'
import { RIGHTS } from '@/auth/RIGHTS'
@Resolver()