Merge branch 'master' into 2139-add-deleted-by-to-contributions

This commit is contained in:
Hannes Heine 2022-10-20 13:36:43 +02:00 committed by GitHub
commit 2827f30d08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,6 +128,7 @@ export class ContributionResolver {
.from(dbContribution, 'c')
.leftJoinAndSelect('c.messages', 'm')
.where(where)
.withDeleted()
.orderBy('c.createdAt', order)
.limit(pageSize)
.offset((currentPage - 1) * pageSize)