mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Change linkCount to contributionCount and linkList to contributionList.
This commit is contained in:
parent
93c2d6814a
commit
495fbfd05c
@ -48,13 +48,13 @@ export class Contribution {
|
|||||||
@ObjectType()
|
@ObjectType()
|
||||||
export class ContributionListResult {
|
export class ContributionListResult {
|
||||||
constructor(count: number, list: Contribution[]) {
|
constructor(count: number, list: Contribution[]) {
|
||||||
this.linkCount = count
|
this.contributionCount = count
|
||||||
this.linkList = list
|
this.contributionList = list
|
||||||
}
|
}
|
||||||
|
|
||||||
@Field(() => Int)
|
@Field(() => Int)
|
||||||
linkCount: number
|
contributionCount: number
|
||||||
|
|
||||||
@Field(() => [Contribution])
|
@Field(() => [Contribution])
|
||||||
linkList: Contribution[]
|
contributionList: Contribution[]
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user