Merge branch 'master' into 2247-links-in-contribution-messages-clickable

This commit is contained in:
Alexander Friedland 2022-10-20 13:12:54 +02:00 committed by GitHub
commit d6cc240b7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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