feat(donors): Resolve donations with donors via pagination
This commit is contained in:
@@ -53,7 +53,9 @@ export class ResponseDonation implements IResponse {
|
||||
*/
|
||||
public constructor(donation: Donation) {
|
||||
this.id = donation.id;
|
||||
this.donor = donation.donor.toResponse();
|
||||
if (donation.donor) {
|
||||
this.donor = donation.donor.toResponse();
|
||||
}
|
||||
this.amount = donation.amount;
|
||||
this.paidAmount = donation.paidAmount || 0;
|
||||
if (this.paidAmount < this.amount) {
|
||||
|
||||
Reference in New Issue
Block a user