This commit is contained in:
Claus-Peter Hübner 2023-04-27 21:35:18 +02:00
parent 7fb7ff9e8c
commit 3fdeec0783
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()