Add deleted Contribution to the Contribution list in the admin interface.

This commit is contained in:
elweyn 2023-01-13 11:05:56 +01:00
parent 9b4d1cd2b3
commit 79220ced79

View File

@ -674,6 +674,7 @@ export class ContributionResolver {
.from(DbContribution, 'c')
.leftJoinAndSelect('c.user', 'u')
.where(`user_id = ${userId}`)
.withDeleted()
.limit(pageSize)
.offset(offset)
.orderBy('c.created_at', order)