Paginated all data #9

Merged
ameye merged 1 commits from testing into master 2025-04-24 10:27:52 +00:00
-1
View File
@@ -33,7 +33,6 @@ class Repayment(db.Model):
# Check that the loan is active
if loan.status != LoanStatus.ACTIVE:
raise ValueError(f"Repayment cannot be processed. Loan status: ({loan.status})")
repayment = cls(
customer_id=customer_id,