debugging

This commit was merged in pull request #34.
This commit is contained in:
Chinenye Nmoh
2025-06-26 18:26:57 +01:00
parent 79109af695
commit 1bf4d61554
5 changed files with 144 additions and 90 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ class LoanService:
Get customer's active loans by customer_id.
"""
return Loan.get_customer_loans(customer_id=customer_id)
return Loan.get_customer_active_loans(customer_id=customer_id)
@classmethod
def update_status(cls, loan_id, status):