mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
import { ObjectType, Field, Int } from 'type-graphql'
|
|
import { Community as DbCommunity } from '@entity/Community'
|
|
|
|
@ObjectType()
|
|
export class Community {
|
|
constructor(dbCom: DbCommunity) {
|
|
this.id = dbCom.id
|
|
this.foreign = dbCom.foreign
|
|
this.publicKey = dbCom.publicKey.toString()
|
|
this.url =
|
|
(dbCom.endPoint.endsWith('/') ? dbCom.endPoint : dbCom.endPoint + '/') +
|
|
'api/' +
|
|
dbCom.apiVersion
|
|
this.lastAnnouncedAt = dbCom.lastAnnouncedAt
|
|
this.verifiedAt = dbCom.verifiedAt
|
|
this.lastErrorAt = dbCom.lastErrorAt
|
|
this.createdAt = dbCom.createdAt
|
|
this.updatedAt = dbCom.updatedAt
|
|
}
|
|
|
|
@Field(() => Int)
|
|
id: number
|
|
|
|
@Field(() => Boolean)
|
|
foreign: boolean
|
|
|
|
@Field(() => String)
|
|
publicKey: string
|
|
|
|
@Field(() => String)
|
|
url: string
|
|
|
|
@Field(() => Date, { nullable: true })
|
|
lastAnnouncedAt: Date | null
|
|
|
|
@Field(() => Date, { nullable: true })
|
|
verifiedAt: Date | null
|
|
|
|
@Field(() => Date, { nullable: true })
|
|
lastErrorAt: Date | null
|
|
|
|
@Field(() => Date, { nullable: true })
|
|
createdAt: Date | null
|
|
|
|
@Field(() => Date, { nullable: true })
|
|
updatedAt: Date | null
|
|
}
|