dleted contributions are displayed to the user

This commit is contained in:
ogerly 2022-10-20 10:00:53 +02:00
parent d847303fef
commit 2d7bef3e7e

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)